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.

24 lines
613 B

using System;
using System.Drawing;
using System.Windows.Forms;
namespace OpenDBDiff.Front
{
public interface IFront
{
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; }
}
}