'宣言 Public ReadOnly Property ControlElement As ControlUIElementBase
public ControlUIElementBase ControlElement {get;}
Imports Infragistics.Win Public Overrides Property BorderStyle() As UIElementBorderStyle Get ' Returns borderstyle based on FlatMode property of the control. If Me.ControlElement.UltraControl.IsFlatMode Then Return UIElementBorderStyle.Solid Else Return UIElementBorderStyle.Raised End If End Get Set(ByVal Value As UIElementBorderStyle) MyBase.BorderStyle = Value End Set End Property
using Infragistics.Win; public override UIElementBorderStyle BorderStyle { get { // Return borderstyle based on FlatMode property of the control. if (this.ControlElement.UltraControl.IsFlatMode) return UIElementBorderStyle.Solid; else return UIElementBorderStyle.Raised; } }