本文整理汇总了C#中WidgetStyle类的典型用法代码示例。如果您正苦于以下问题:C# WidgetStyle类的具体用法?C# WidgetStyle怎么用?C# WidgetStyle使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
WidgetStyle类属于命名空间,在下文中一共展示了WidgetStyle类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MenuBar
internal MenuBar(IntPtr _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
: base(_parent, _style, _skin, _coord, _align, _layer, _name)
{
}
示例2: RequestCreateMenuBar
internal static BaseWidget RequestCreateMenuBar(IntPtr _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
{
return new MenuBar(_parent, _style, _skin, _coord, _align, _layer, _name);
}
示例3: 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;
}
示例4: 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;
}
示例5: 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;
}
示例6: AttachToWidget
public void AttachToWidget(
Widget _parent ,
WidgetStyle _style ,
string _layer)
{
ExportWidget_AttachToWidget_parent_style_layer( mNative ,
_parent ,
_style ,
_layer );
}
示例7: SetWidgetStyle
public void SetWidgetStyle(
WidgetStyle _style ,
string _layer)
{
ExportWidget_SetWidgetStyle_style_layer( mNative ,
_style ,
_layer );
}
示例8: 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;
}
示例9: RequestCreateDDContainer
internal static BaseWidget RequestCreateDDContainer(BaseWidget _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
{
DDContainer widget = new DDContainer();
widget.CreateWidgetImpl(_parent, _style, _skin, _coord, _align, _layer, _name);
return widget;
}