本文整理汇总了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);
}
示例2: Button
public Button(AControl owner)
: base(owner)
{
HandlesMouseInput = true;
m_UserInterface = ServiceRegistry.GetService<UserInterfaceService>();
}
示例3: ColorPickerBox
public ColorPickerBox(AControl parent)
: base(parent)
{
HandlesMouseInput = true;
m_UserInterface = ServiceRegistry.GetService<UserInterfaceService>();
}
示例4: ItemGumplingPaperdoll
public ItemGumplingPaperdoll(AControl parent, int x, int y, Item item)
: base(parent, item)
{
m_x = x;
m_y = y;
HighlightOnMouseOver = false;
}
示例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>();
}
示例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>();
}
示例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();
}
示例8: TextEntry
public TextEntry(AControl parent)
: base(parent)
{
HandlesMouseInput = true;
HandlesKeyboardFocus = true;
m_UserInterface = ServiceRegistry.GetService<UserInterfaceService>();
}
示例9: DropDownList
public DropDownList(AControl owner)
: base(owner)
{
HandlesMouseInput = true;
m_UserInterface = ServiceRegistry.GetService<UserInterfaceService>();
m_Font = ServiceRegistry.GetService<IUIResourceProvider>().GetAsciiFont(1);
}
示例10: ItemGumpling
public ItemGumpling(AControl parent, Item item)
: base(parent)
{
BuildGumpling(item);
HandlesMouseInput = true;
m_World = Service.Get<WorldModel>();
}
示例11: ItemGumpling
public ItemGumpling(AControl owner, Item item)
: base(owner)
{
buildGumpling(item);
HandlesMouseInput = true;
m_World = ServiceRegistry.GetService<WorldModel>();
}
示例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;
}
示例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>();
}
示例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);
}
示例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);
}