📄 ui.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace AnotherPDFLib.XFA
{
/// <summary>
/// A user-interface element that encloses the actual user interface widget element.
/// </summary>
public class ui : element_id_extras
{
public ui() : base("ui") { }
protected picture _picture;
public picture picture
{
get
{
if (_picture == null)
{
_picture = new picture();
this.AddChild(_picture);
}
return _picture;
}
set
{
this.RemoveChild(_picture);
_picture = value;
this.AddChild(_picture);
}
}
protected control _control;
public control control
{
get
{
return _control;
}
set
{
this.RemoveChild(_control);
_control = value;
this.AddChild(_control);
}
}
protected exObject _exObject;
public exObject exObject
{
get
{
if (_exObject == null)
{
_exObject = new exObject();
this.AddChild(_exObject);
}
return _exObject;
}
set
{
this.RemoveChild(_exObject);
_exObject = value;
this.AddChild(_exObject);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -