共用方式為


AdornerStretch 列舉型別

列舉,當設計檢視進行縮放時,用來識別裝飾項之特定維度 (X 或 Y) 的行為。

命名空間:  Microsoft.Windows.Design.Interaction
組件:  Microsoft.Windows.Design.Interaction (在 Microsoft.Windows.Design.Interaction.dll 中)

語法

'宣告
Public Enumeration AdornerStretch
public enum AdornerStretch
public enum class AdornerStretch
type AdornerStretch
public enum AdornerStretch

成員

成員名稱 說明
None 在縮放期間維度不變。因此在縮放期間,裝飾項並不會變更大小或縮放比例。
Stretch 在縮放期間維度延伸。因此,裝飾項會愈來愈大,但是所呈現項目/線條/畫筆的筆劃卻不會增加。

備註

當設計檢視進行縮放時,您可以使用 SetHorizontalStretchSetVerticalStretch 方法中的 AdornerStretch 指定裝飾項面板的縮放行為。

範例

下列程式碼範例說明如何使用 SetHorizontalStretch 方法,指定裝飾項的水平 AdornerStretch 值。 這個程式碼範例是 AdornerPanel 類別完整範例的一部分。

' The slider extends the full width of the control it adorns.
AdornerPanel.SetAdornerHorizontalAlignment( _
    opacitySlider, _
    AdornerHorizontalAlignment.Stretch)

' Position the adorner above the control it adorns.
AdornerPanel.SetAdornerVerticalAlignment( _
    opacitySlider, _
    AdornerVerticalAlignment.OutsideTop)

' Position the adorner 5 pixels above the control. 
AdornerPanel.SetAdornerMargin( _
    opacitySlider, _
    New Thickness(0, 0, 0, 5))
// The slider extends the full width of the control it adorns.
AdornerPanel.SetAdornerHorizontalAlignment( 
    opacitySlider, 
    AdornerHorizontalAlignment.Stretch);

// Position the adorner above the control it adorns.
AdornerPanel.SetAdornerVerticalAlignment(
    opacitySlider, 
    AdornerVerticalAlignment.OutsideTop);

// Position the adorner 5 pixels above the control. 
AdornerPanel.SetAdornerMargin(
    opacitySlider, 
    new Thickness(0, 0, 0, 5));

請參閱

參考

Microsoft.Windows.Design.Interaction 命名空間

AdornerPanel

其他資源

逐步解說:建立設計階段裝飾項

裝飾項架構