Beispiel #1
0
        // 预览层集合
        //protected FUiControlLayers _previewLayers = new FUiControlLayers();

        //============================================================
        // <T>构造界面表单。</T>
        //
        // @param console 控制台
        //============================================================
        public FRcFrame(FRcFrameConsole console = null)
            : base(console)
        {
        }
Beispiel #2
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcButton(FRcFrameConsole console = null) : base(console)
 {
     _typeName  = REnum.ToString <ERcComponent>(ERcComponent.Button);
     _styleName = "control.button";
 }
Beispiel #3
0
 //============================================================
 // <T>构造界面容器。</T>
 //
 // @param console 控制台
 //============================================================
 public FRcContainer(FRcFrameConsole console = null)
     : base(console)
 {
 }
Beispiel #4
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcTable(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.Table);
 }
Beispiel #5
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcStaticLabel(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.StaticLabel);
 }
Beispiel #6
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcMenuItem(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.MenuItem);
 }
Beispiel #7
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcScrollItem(FRcFrameConsole console = null)
     : base(console)
 {
 }
Beispiel #8
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcProgressBar(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.ProgressBar);
 }
Beispiel #9
0
 //============================================================
 // <T>构造窗口定义。</T>
 //============================================================
 public FRcWindow(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.Window);
 }
Beispiel #10
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcPageControl(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.PageControl);
 }
Beispiel #11
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcRadio(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.Radio);
 }
Beispiel #12
0
 //============================================================
 // <T>构造界面数据列。</T>
 //
 // @param console 控制台
 //============================================================
 public FRcDataColumns(FRcFrameConsole console = null)
     : base(console)
 {
 }
Beispiel #13
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcTreeNodeLevel(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.TreeNodeLevel);
 }
Beispiel #14
0
 //============================================================
 // <T>构造界面数据控件。</T>
 //
 // @param console 控制台
 //============================================================
 public FRcDataControl(FRcFrameConsole console = null)
     : base(console)
 {
 }
Beispiel #15
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcScrollBar(FRcFrameConsole console = null) : base(console)
 {
     _typeName  = REnum.ToString <ERcComponent>(ERcComponent.ScrollBar);
     _styleName = "control.scroll.bar";
 }
Beispiel #16
0
 //============================================================
 // <T>构造界面对象。</T>
 //
 // @param console 控制台
 //============================================================
 public FRcObject(FRcFrameConsole console = null)
 {
     _console = console;
 }
Beispiel #17
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcScrollView(FRcFrameConsole console = null)
     : base(console)
 {
 }
Beispiel #18
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcSelect(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.Select);
 }
Beispiel #19
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcListView(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.ListView);
 }
Beispiel #20
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcSlider(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.ScrollBar);
 }
Beispiel #21
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcGridCellNumber(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.GridCellNumber);
 }
Beispiel #22
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcGridColumnCheck(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.GridColumn);
 }
Beispiel #23
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcPictureBox(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.PictureBox);
 }
Beispiel #24
0
 //============================================================
 // <T>构造界面组件。</T>
 //
 // @param console 控制台
 //============================================================
 public FRcComponent(FRcFrameConsole console = null)
     : base(console)
 {
 }
Beispiel #25
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcCalendar(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.Calendar);
 }
Beispiel #26
0
 //============================================================
 // <T>构造控件。</T>
 //============================================================
 public FRcRichEdit(FRcFrameConsole console = null)
     : base(console)
 {
     _typeName = REnum.ToString <ERcComponent>(ERcComponent.RichEdit);
 }