コード例 #1
0
        //private DBViewControlType dbViewControlType = DBViewControlType.DBGridView;
        //private DBViewControl dbViewControl = null;

        public GUIEntityInfo(ContextObject owner)
            : base(owner)
        {
            //DBViewControl = new DBGridView(this);
            Fields      = new ContextObjectList <GUIColumnInfo>(this);
            DetailViews = new ContextObjectList <GUIEntityInfo>(this);
        }
コード例 #2
0
        public Database(ContextObject owner)
            : base(owner)
        {
            Connection = new Connection(this);

            Tables = new ContextObjectList <TableInfo>(this);
            Views  = new ContextObjectList <ViewInfo>(this);
        }
コード例 #3
0
        //private string name;
        //private string caption;
        //private string description;

        public GUIModule(ContextObject owner)
            : base(owner)
        {
            Windows = new ContextObjectList <GUIWindow>(this);
        }
コード例 #4
0
ファイル: GUIWindow.cs プロジェクト: Pinckyang/easygenerator
 public GUIWindow(ContextObject owner)
     : base(owner)
 {
     MasterViews = new ContextObjectList <GUIEntityInfo>(this);
 }
コード例 #5
0
 public GUISystemModule(ContextObject owner)
     : base(owner)
 {
     Modules = new ContextObjectList <GUIModule>(this);
 }
コード例 #6
0
ファイル: GUIDialog.cs プロジェクト: Pinckyang/easygenerator
 public GUIDialog(ContextObject owner)
     : base(owner)
 {
     Entities = new ContextObjectList <EntityInfo>(this);
 }
コード例 #7
0
 public EntityInfo(ContextObject owner)
     : base(owner)
 {
     Columns     = new ContextObjectList <ColumnInfo>(this);
     this.Schema = "dbo";
 }