'宣言 Public Overridable Function GetBorderWidths( _ ByVal style As UIElementBorderStyle, _ ByVal sides As Border3DSide _ ) As UIElementBorderWidths
public virtual UIElementBorderWidths GetBorderWidths( UIElementBorderStyle style, Border3DSide sides )
Imports Infragistics.Win Private Function CombinedBorderHeight(ByVal element As UIElement) As Integer ' Returns the pixel height of the top and bottom borders on the element passed in. Dim borderwidths As UIElementBorderWidths = element.GetBorderWidths(element.BorderStyle, element.BorderSides) Return borderwidths.Top + borderwidths.Bottom End Function
using Infragistics.Win; private int CombinedBorderHeight(UIElement element) { // Returns the pixel height of the top and bottom borders on the element passed in. UIElementBorderWidths borderwidths = element.GetBorderWidths( element.BorderStyle,element.BorderSides ); return borderwidths.Top + borderwidths.Bottom; }