本文整理汇总了C#中UltimaXNA.Core.UI.AControl类的典型用法代码示例。如果您正苦于以下问题:C# AControl类的具体用法?C# AControl怎么用?C# AControl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AControl类属于UltimaXNA.Core.UI命名空间,在下文中一共展示了AControl类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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
示例16: ExpandableScroll
public ExpandableScroll(AControl parent, int x, int y, int height, bool isResizable = true)
: base(0, 0)
{
Parent = parent;
Position = new Point(x, y);
m_ExpandableScrollHeight = height;
m_IsResizable = isResizable;
MakeThisADragger();
}
开发者ID:HankTheDrunk,项目名称:UltimaXNA,代码行数:9,代码来源:ExpandableScroll.cs
示例17: TextLabel
public TextLabel(AControl parent, string[] arguements, string[] lines)
: this(parent)
{
int x, y, hue, textIndex;
x = Int32.Parse(arguements[1]);
y = Int32.Parse(arguements[2]);
hue = Int32.Parse(arguements[3]);
textIndex = Int32.Parse(arguements[4]);
buildGumpling(x, y, hue, lines[textIndex]);
}
开发者ID:HankTheDrunk,项目名称:UltimaXNA,代码行数:10,代码来源:TextLabel.cs
示例18: ResizePic
public ResizePic(AControl parent, AControl createBackgroundAroundThisControl)
: this(parent)
{
buildGumpling(createBackgroundAroundThisControl.X - 4,
createBackgroundAroundThisControl.Y - 4,
9350,
createBackgroundAroundThisControl.Width + 8,
createBackgroundAroundThisControl.Height + 8);
Page = createBackgroundAroundThisControl.Page;
}
开发者ID:msx752,项目名称:UltimaXNA,代码行数:10,代码来源:ResizePic.cs
示例19: GumpPicTiled
public GumpPicTiled(AControl owner, string[] arguements)
: this(owner)
{
int x, y, gumpID, width, height;
x = Int32.Parse(arguements[1]);
y = Int32.Parse(arguements[2]);
width = Int32.Parse(arguements[3]);
height = Int32.Parse(arguements[4]);
gumpID = Int32.Parse(arguements[5]);
buildGumpling(x, y, width, height, gumpID);
}
开发者ID:gautamabudha,项目名称:UltimaXNA,代码行数:11,代码来源:GumpPicTiled.cs
示例20: CheckerTrans
public CheckerTrans(AControl owner, string[] arguements)
: this(owner)
{
int x, y, width, height;
x = Int32.Parse(arguements[1]);
y = Int32.Parse(arguements[2]);
width = Int32.Parse(arguements[3]);
height = Int32.Parse(arguements[4]);
buildGumpling(x, y, width, height);
}
开发者ID:gautamabudha,项目名称:UltimaXNA,代码行数:11,代码来源:CheckerTrans.cs
注:本文中的UltimaXNA.Core.UI.AControl类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论