상속: ComponentParentAdapter, Atk.ITextImplementor, Atk.IHypertextImplementor
예제 #1
0
파일: Hyperlink.cs 프로젝트: mono/uia2atk
		public HyperlinkActor (Hyperlink parent, int index) : base (parent.Provider)
		{
			Role = Atk.Role.PushButton;
			this.Parent = parent;
			this.hyperlink = parent;
			this.index = index;
			UpdateNameProperty (null, false);
			parent.AddOneChild (this);
		}
예제 #2
0
파일: Hyperlink.cs 프로젝트: mono/uia2atk
		public HyperlinkObject (Hyperlink resource, int index)
		{
			this.resource = resource;
			this.index = index;
			this.obj = new HyperlinkActor (resource, index);
		}