You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
679 B
25 lines
679 B
using System;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace OpenDBDiff.Abstractions.Ui
|
|
{
|
|
public interface IFront : ICloneable
|
|
{
|
|
Point Location { get; set; }
|
|
string Name { get; set; }
|
|
Size Size { get; set; }
|
|
int TabIndex { get; set; }
|
|
bool Visible { get; set; }
|
|
DockStyle Dock { get; set; }
|
|
Boolean TestConnection();
|
|
string ConnectionString { get; set; }
|
|
string ErrorConnection { get; }
|
|
string DatabaseName { get; }
|
|
string Text { get; set; }
|
|
AnchorStyles Anchor { get; set; }
|
|
Control Control { get; }
|
|
void SetSettingsFrom(IFront other);
|
|
}
|
|
}
|