本文整理汇总了C#中MyGUI.Sharp.IntCoord类的典型用法代码示例。如果您正苦于以下问题:C# IntCoord类的具体用法?C# IntCoord怎么用?C# IntCoord使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IntCoord类属于MyGUI.Sharp命名空间,在下文中一共展示了IntCoord类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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;
}
示例2: AddItemFrame
public void AddItemFrame(
uint _index ,
IntCoord _item)
{
ExportStaticImage_AddItemFrame_index_item( mNative ,
_index ,
ref _item );
}
示例3: AddItemFrame
public void AddItemFrame(
uint _index,
IntCoord _item)
{
ExportImageBox_AddItemFrame__index__item(Native,
_index,
ref _item);
}
示例4: SetImageInfo
public void SetImageInfo(
string _texture ,
IntCoord _coord ,
IntSize _tile )
{
ExportStaticImage_SetImageInfo_texture_coord_tile( mNative ,
_texture ,
ref _coord ,
ref _tile );
}
示例5: SetItemFrame
public void SetItemFrame(
uint _index,
uint _indexFrame,
IntCoord _item)
{
ExportImageBox_SetItemFrame__index__indexFrame__item(Native,
_index,
_indexFrame,
ref _item);
}
示例6: SetImageInfo
public void SetImageInfo(
string _texture,
IntCoord _coord,
IntSize _tile)
{
ExportImageBox_SetImageInfo__texture__coord__tile(Native,
_texture,
ref _coord,
ref _tile);
}
示例7: SetItem
public void SetItem(
uint _index,
IntCoord _item)
{
ExportImageBox_SetItem__index__item(Native,
_index,
ref _item);
}
示例8: SetItem
public void SetItem(
uint _index ,
IntCoord _item)
{
ExportStaticImage_SetItem_index_item( mNative ,
_index ,
ref _item );
}
示例9: SetImageCoord
public void SetImageCoord(
IntCoord _value)
{
ExportImageBox_SetImageCoord__value(Native,
ref _value);
}
示例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;
}
示例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)
{
}
示例12: SetImageCoord
public void SetImageCoord(
IntCoord _coord )
{
ExportStaticImage_SetImageCoord_coord( mNative ,
ref _coord );
}
示例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;
}
示例14: SetItemFrame
public void SetItemFrame(
uint _index ,
uint _indexFrame ,
IntCoord _item)
{
ExportStaticImage_SetItemFrame_index_indexFrame_item( mNative ,
_index ,
_indexFrame ,
ref _item );
}
示例15: OnExportCoordItem
private static void OnExportCoordItem(
ItemBox _sender ,
ref IntCoord _coord ,
bool _drag )
{
if (_sender.mEventCoordItem != null)
_sender.mEventCoordItem(
_sender ,
ref _coord ,
_drag );
}