本文整理汇总了C#中MyGUI.Sharp.IntCoord类的典型用法代码示例。如果您正苦于以下问题:C# IntCoord类的具体用法?C# IntCoord怎么用?C# IntCoord使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IntCoord类属于MyGUI.Sharp命名空间,在下文中一共展示了IntCoord类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: box_RequestCoordItem
static void box_RequestCoordItem(ItemBox _sender, ref IntCoord _coord, bool _drag)
{
_coord.left = 0;
_coord.top = 0;
_coord.width = 70;
_coord.height = 70;
}
开发者ID:LiberatorUSA,项目名称:GUCEF,代码行数:7,代码来源:Test_ItemBox.cs
示例2: AddItemFrame
public void AddItemFrame(
uint _index ,
IntCoord _item)
{
ExportStaticImage_AddItemFrame_index_item( mNative ,
_index ,
ref _item );
}
开发者ID:siangzhang,项目名称:starworld,代码行数:8,代码来源:MyGUI.Sharp_StaticImage.cs
示例3: AddItemFrame
public void AddItemFrame(
uint _index,
IntCoord _item)
{
ExportImageBox_AddItemFrame__index__item(Native,
_index,
ref _item);
}
开发者ID:nice1378,项目名称:mygui,代码行数:8,代码来源:MyGUI_Sharp_ImageBox.cs
示例4: SetImageInfo
public void SetImageInfo(
string _texture ,
IntCoord _coord ,
IntSize _tile )
{
ExportStaticImage_SetImageInfo_texture_coord_tile( mNative ,
_texture ,
ref _coord ,
ref _tile );
}
开发者ID:venkatarajasekhar,项目名称:viper,代码行数:10,代码来源:MyGUI.Sharp_StaticImage.cs
示例5: SetItemFrame
public void SetItemFrame(
uint _index,
uint _indexFrame,
IntCoord _item)
{
ExportImageBox_SetItemFrame__index__indexFrame__item(Native,
_index,
_indexFrame,
ref _item);
}
开发者ID:nice1378,项目名称:mygui,代码行数:10,代码来源:MyGUI_Sharp_ImageBox.cs
示例6: SetImageInfo
public void SetImageInfo(
string _texture,
IntCoord _coord,
IntSize _tile)
{
ExportImageBox_SetImageInfo__texture__coord__tile(Native,
_texture,
ref _coord,
ref _tile);
}
开发者ID:nice1378,项目名称:mygui,代码行数:10,代码来源:MyGUI_Sharp_ImageBox.cs
示例7: SetItem
public void SetItem(
uint _index,
IntCoord _item)
{
ExportImageBox_SetItem__index__item(Native,
_index,
ref _item);
}
开发者ID:nice1378,项目名称:mygui,代码行数:8,代码来源:MyGUI_Sharp_ImageBox.cs
示例8: SetItem
public void SetItem(
uint _index ,
IntCoord _item)
{
ExportStaticImage_SetItem_index_item( mNative ,
_index ,
ref _item );
}
开发者ID:siangzhang,项目名称:starworld,代码行数:8,代码来源:MyGUI.Sharp_StaticImage.cs
示例9: SetImageCoord
public void SetImageCoord(
IntCoord _value)
{
ExportImageBox_SetImageCoord__value(Native,
ref _value);
}
开发者ID:nice1378,项目名称:mygui,代码行数:6,代码来源:MyGUI_Sharp_ImageBox.cs
示例10: 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;
}
开发者ID:blunted2night,项目名称:MyGUI,代码行数:6,代码来源:MyGUI_Sharp_DDContainer.cs
示例11: 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)
{
}
开发者ID:venkatarajasekhar,项目名称:viper,代码行数:4,代码来源:MyGUI.Sharp_MenuBar.cs
示例12: SetImageCoord
public void SetImageCoord(
IntCoord _coord )
{
ExportStaticImage_SetImageCoord_coord( mNative ,
ref _coord );
}
开发者ID:venkatarajasekhar,项目名称:viper,代码行数:6,代码来源:MyGUI.Sharp_StaticImage.cs
示例13: 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;
}
开发者ID:blunted2night,项目名称:MyGUI,代码行数:6,代码来源:MyGUI_Sharp_MultiListBox.cs
示例14: SetItemFrame
public void SetItemFrame(
uint _index ,
uint _indexFrame ,
IntCoord _item)
{
ExportStaticImage_SetItemFrame_index_indexFrame_item( mNative ,
_index ,
_indexFrame ,
ref _item );
}
开发者ID:siangzhang,项目名称:starworld,代码行数:10,代码来源:MyGUI.Sharp_StaticImage.cs
示例15: OnExportCoordItem
private static void OnExportCoordItem(
ItemBox _sender ,
ref IntCoord _coord ,
bool _drag )
{
if (_sender.mEventCoordItem != null)
_sender.mEventCoordItem(
_sender ,
ref _coord ,
_drag );
}
开发者ID:sskoruppa,项目名称:Glove_Code,代码行数:11,代码来源:MyGUI.Sharp_ItemBox.cs
示例16: OnExportDragWidgetInfo
private static void OnExportDragWidgetInfo(
DDContainer _sender ,
ref IntPtr _item ,
ref IntCoord _dimension )
{
Widget __item = null;
if (_sender.mEventDragWidgetInfo != null)
_sender.mEventDragWidgetInfo(
_sender ,
ref __item ,
ref _dimension );
_item = (__item == null) ? IntPtr.Zero : __item.GetNative();
}
开发者ID:piaoasd123,项目名称:Fwankie,代码行数:15,代码来源:MyGUI.Sharp_DDContainer.cs
示例17: SetCoord
public void SetCoord(
IntCoord _coord )
{
ExportWidget_SetCoord_coord( mNative ,
ref _coord );
}
开发者ID:venkatarajasekhar,项目名称:viper,代码行数:6,代码来源:MyGUI.Sharp_Widget.cs
示例18: OnExportCoordItem
private static void OnExportCoordItem(
IntPtr _sender,
ref IntCoord _coord,
bool _drag)
{
ItemBox sender = (ItemBox)BaseWidget.GetByNative(_sender);
if (sender.mEventCoordItem != null)
sender.mEventCoordItem(
sender ,
ref _coord,
_drag);
}
开发者ID:asdlei00,项目名称:mygui,代码行数:13,代码来源:MyGUI_Sharp_ItemBox.cs
示例19: AddItem
public void AddItem(
IntCoord _item)
{
ExportImageBox_AddItem__item(Native,
ref _item);
}
开发者ID:nice1378,项目名称:mygui,代码行数:6,代码来源:MyGUI_Sharp_ImageBox.cs
示例20: container_RequestDragWidgetInfo
static void container_RequestDragWidgetInfo(DDContainer _sender, ref Widget _item, ref IntCoord _dimension)
{
mWidget.Visible = true;
_item = mWidget;
_dimension = new IntCoord(0, 0, 20, 20);
}
开发者ID:sskoruppa,项目名称:Glove_Code,代码行数:6,代码来源:Test_DDContainer.cs
注:本文中的MyGUI.Sharp.IntCoord类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论