ContextMenuService.VerticalOffset 附加屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出相對於父控制項沿著 Y 方向放置 ContextMenu 的位置。
see GetVerticalOffset, and SetVerticalOffset
see GetVerticalOffset, and SetVerticalOffset
see GetVerticalOffset, and SetVerticalOffset
範例
下列範例會將相同的 ContextMenu 指派給兩個按鈕,並將 、 Placement 、 PlacementRectangle 、 HorizontalOffset 和 VerticalOffset 屬性設定 HasDropShadowContextMenu 為每個按鈕的不同位置。
<StackPanel>
<StackPanel.Resources>
<ContextMenu x:Key="myContextMenu">
<MenuItem Header="Item"/>
</ContextMenu>
</StackPanel.Resources>
<!--Both buttons use the same ContextMenu but use the
properties on ContextMenuService to position them
differently.-->
<Button ContextMenu="{StaticResource myContextMenu}"
ContextMenuService.HasDropShadow="False"
ContextMenuService.Placement="Relative"
ContextMenuService.HorizontalOffset="50"
ContextMenuService.VerticalOffset="-10">
button 1
</Button>
<Button ContextMenu="{StaticResource myContextMenu}"
ContextMenuService.HasDropShadow="True"
ContextMenuService.Placement="Right"
ContextMenuService.PlacementRectangle="0,0,30,30">
button 2
</Button>
</StackPanel>
備註
您可以藉由設定 、 PlacementRectangle 、 Placement 、 HorizontalOffset 和 VerticalOffsetProperty 屬性來 PlacementTarget 定位 ContextMenu 。 這些屬性的行為與 針對 Popup 相同。 如需詳細資訊,請參閱快顯放置行為。
相依性屬性資訊
識別碼欄位 | VerticalOffsetProperty |
設定為 的中繼資料屬性 true |
無 |
XAML Attribute Usage
<object VerticalOffset="double"/>
- or -
<object VerticalOffset="qualifiedDouble"/>
XAML 值
double
Double
值的字串表示 Double 。 這會解譯為與裝置無關的單位, (1/96 英吋) 測量。 字串不需要明確包含小數點。 例如, 的值 1
是可接受的。
qualifiedDouble
如上所述的 雙精度 浮點數,後面接著下列其中一個單位宣告字串: px
、、、 in
cm
pt
、 。
px
(預設) 是裝置獨立單位 (,每單位 1/96 英吋)
in
為英吋;1in==96px
cm
為公分;1cm== (96/2.54) px
pt
為點;1pt== (96/72) px