當前位置: 首頁>>代碼示例>>C#>>正文


C# Sharp.IntCoord類代碼示例

本文整理匯總了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;
 }
開發者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


注:本文中的MyGUI.Sharp.IntCoord類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。