当前位置: 首页>>代码示例>>C#>>正文


C# UI.AControl类代码示例

本文整理汇总了C#中UltimaXNA.Core.UI.AControl的典型用法代码示例。如果您正苦于以下问题:C# AControl类的具体用法?C# AControl怎么用?C# AControl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


AControl类属于UltimaXNA.Core.UI命名空间,在下文中一共展示了AControl类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: DropDownList

        public DropDownList(AControl parent)
            : base(parent)
        {
            HandlesMouseInput = true;

            m_Font = ServiceRegistry.GetService<IResourceProvider>().GetAsciiFont(1);
        }
开发者ID:msx752,项目名称:UltimaXNA,代码行数:7,代码来源:DropDownList.cs

示例2: Button

        public Button(AControl owner)
            : base(owner)
        {
            HandlesMouseInput = true;

            m_UserInterface = ServiceRegistry.GetService<UserInterfaceService>();
        }
开发者ID:gautamabudha,项目名称:UltimaXNA,代码行数:7,代码来源:Button.cs

示例3: ColorPickerBox

        public ColorPickerBox(AControl parent)
            : base(parent)
        {
            HandlesMouseInput = true;

            m_UserInterface = ServiceRegistry.GetService<UserInterfaceService>();
        }
开发者ID:robertdeclaux,项目名称:UltimaXNA,代码行数:7,代码来源:ColorPickerBox.cs

示例4: ItemGumplingPaperdoll

 public ItemGumplingPaperdoll(AControl parent, int x, int y, Item item)
     : base(parent, item)
 {
     m_x = x;
     m_y = y;
     HighlightOnMouseOver = false;
 }
开发者ID:msx752,项目名称:UltimaXNA,代码行数:7,代码来源:ItemGumplingPaperdoll.cs

示例5: PaperDollInteractable

        public PaperDollInteractable(AControl parent, int x, int y)
            : base(0, 0)
        {
            Parent = parent;
            Position = new Point(x, y);

            m_World = ServiceRegistry.GetService<WorldModel>();
        }
开发者ID:InjectionDev,项目名称:UltimaXNA,代码行数:8,代码来源:PaperDollInteractable.cs

示例6: PaperDollInteractable

        public PaperDollInteractable(AControl owner, int x, int y)
            : base(0, 0)
        {
            Owner = owner;
            Position = new Point(x, y);

            m_World = ServiceRegistry.GetService<WorldModel>();
        }
开发者ID:gautamabudha,项目名称:UltimaXNA,代码行数:8,代码来源:PaperDollInteractable.cs

示例7: ExpandableScroll

 public ExpandableScroll(AControl owner, int x, int y, int height)
     : base(0, 0)
 {
     Owner = owner;
     Position = new Point(x, y);
     m_expandableScrollHeight = height;
     MakeThisADragger();
 }
开发者ID:gautamabudha,项目名称:UltimaXNA,代码行数:8,代码来源:ExpandableScroll.cs

示例8: TextEntry

        public TextEntry(AControl parent)
            : base(parent)
        {
            HandlesMouseInput = true;
            HandlesKeyboardFocus = true;

            m_UserInterface = ServiceRegistry.GetService<UserInterfaceService>();
        }
开发者ID:leventcorapsiz,项目名称:UltimaXNA,代码行数:8,代码来源:TextEntry.cs

示例9: DropDownList

        public DropDownList(AControl owner)
            : base(owner)
        {
            HandlesMouseInput = true;

            m_UserInterface = ServiceRegistry.GetService<UserInterfaceService>();
            m_Font = ServiceRegistry.GetService<IUIResourceProvider>().GetAsciiFont(1);
        }
开发者ID:gautamabudha,项目名称:UltimaXNA,代码行数:8,代码来源:DropDownList.cs

示例10: ItemGumpling

        public ItemGumpling(AControl parent, Item item)
            : base(parent)
        {
            BuildGumpling(item);
            HandlesMouseInput = true;

            m_World = Service.Get<WorldModel>();
        }
开发者ID:jorsi,项目名称:UltimaXNA,代码行数:8,代码来源:ItemGumpling.cs

示例11: ItemGumpling

        public ItemGumpling(AControl owner, Item item)
            : base(owner)
        {
            buildGumpling(item);
            HandlesMouseInput = true;

            m_World = ServiceRegistry.GetService<WorldModel>();
        }
开发者ID:gautamabudha,项目名称:UltimaXNA,代码行数:8,代码来源:ItemGumpling.cs

示例12: ScrollBar

 public ScrollBar(AControl owner, int x, int y, int height, int minValue, int maxValue, int value)
     : this(owner)
 {
     Position = new Point(x, y);
     MinValue = minValue;
     MaxValue = maxValue;
     Height = height;
     Value = value;
 }
开发者ID:gautamabudha,项目名称:UltimaXNA,代码行数:9,代码来源:ScrollBar.cs

示例13: PaperDollInteractable

 public PaperDollInteractable(AControl parent, int x, int y, Mobile sourceEntity)
     : base(0, 0)
 {
     Parent = parent;
     Position = new Point(x, y);
     m_isFemale = sourceEntity.Flags.IsFemale;
     SourceEntity = sourceEntity;
     m_World = ServiceRegistry.GetService<WorldModel>();
 }
开发者ID:robertdeclaux,项目名称:UltimaXNA,代码行数:9,代码来源:PaperDollInteractable.cs

示例14: WorldViewport

        public WorldViewport(AControl parent, int x, int y, int width, int height)
            : base(parent)
        {
            Position = new Point(x, y);
            Size = new Point(width, height);

            HandlesMouseInput = true;
            ServiceRegistry.Register<WorldViewport>(this);
        }
开发者ID:msx752,项目名称:UltimaXNA,代码行数:9,代码来源:WorldViewport.cs

示例15: WorldControl

        public WorldControl(AControl owner, int x, int y, int width, int height)
            : base(owner)
        {
            Position = new Point(x, y);
            Size = new Point(width, height);

            HandlesMouseInput = true;
            ServiceRegistry.Register<WorldControl>(this);
        }
开发者ID:gautamabudha,项目名称:UltimaXNA,代码行数:9,代码来源:WorldControl.cs


注:本文中的UltimaXNA.Core.UI.AControl类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。