本文整理汇总了C#中BaseWidget类的典型用法代码示例。如果您正苦于以下问题:C# BaseWidget类的具体用法?C# BaseWidget怎么用?C# BaseWidget使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BaseWidget类属于命名空间,在下文中一共展示了BaseWidget类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RequestWrapTabItem
internal static BaseWidget RequestWrapTabItem(BaseWidget _parent, IntPtr _widget)
{
return new TabItem(_parent, _widget);
}
示例2: RequestCreatePopupMenu
internal static BaseWidget RequestCreatePopupMenu(BaseWidget _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
{
PopupMenu widget = new PopupMenu();
widget.CreateWidgetImpl(_parent, _style, _skin, _coord, _align, _layer, _name);
return widget;
}
示例3: MenuBar
internal MenuBar(BaseWidget _parent, IntPtr _widget)
: base(_parent, _widget)
{
}
示例4: RequestCreateMultiListBox
internal static BaseWidget RequestCreateMultiListBox(BaseWidget _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
{
MultiListBox widget = new MultiListBox();
widget.CreateWidgetImpl(_parent, _style, _skin, _coord, _align, _layer, _name);
return widget;
}
示例5: RequestCreateScrollView
internal static BaseWidget RequestCreateScrollView(BaseWidget _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
{
ScrollView widget = new ScrollView();
widget.CreateWidgetImpl(_parent, _style, _skin, _coord, _align, _layer, _name);
return widget;
}
示例6: StaticText
internal StaticText(BaseWidget _parent, IntPtr _widget)
: base(_parent, _widget)
{
}
示例7: StaticImage
internal StaticImage(BaseWidget _parent, IntPtr _widget)
: base(_parent, _widget)
{
}
示例8: ListBox
internal ListBox(BaseWidget _parent, IntPtr _widget)
: base(_parent, _widget)
{
}
示例9: RequestCreateTabBar
internal static BaseWidget RequestCreateTabBar(BaseWidget _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
{
TabBar widget = new TabBar();
widget.CreateWidget(_parent, _style, _skin, _coord, _align, _layer, _name);
return widget;
}
示例10: RequestWrapProgressBar
internal static BaseWidget RequestWrapProgressBar(BaseWidget _parent, IntPtr _widget)
{
ProgressBar widget = new ProgressBar();
widget.WrapWidget(_parent, _widget);
return widget;
}
示例11: RequestWrapListBox
internal static BaseWidget RequestWrapListBox(BaseWidget _parent, IntPtr _widget)
{
return new ListBox(_parent, _widget);
}
示例12: Canvas
internal Canvas(BaseWidget _parent, IntPtr _widget)
: base(_parent, _widget)
{
}
示例13: RequestWrapCanvas
internal static BaseWidget RequestWrapCanvas(BaseWidget _parent, IntPtr _widget)
{
return new Canvas(_parent, _widget);
}
示例14: RequestWrapVScrollBar
internal static BaseWidget RequestWrapVScrollBar(BaseWidget _parent, IntPtr _widget)
{
VScrollBar widget = new VScrollBar();
widget.WrapWidget(_parent, _widget);
return widget;
}
示例15: Button
internal Button(BaseWidget _parent, IntPtr _widget)
: base(_parent, _widget)
{
}