使用自定义工具窗口我尝试使用对接面板中的对齐按钮水平左右两侧工作正常,但我想要与工具栏相同,但它无法正常工作。
并且它与Visual Studio左右两侧和工具栏对接应该覆盖内容(Visual studio默认行为) This is my current implementation with dockpanel 我的代码就是这个,
Xaml
<Button Background="Gray" Content="btn1"></Button>
<Button Background="Red" Content="btn2" ></Button>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
<Button Background="Gray" Content="btn1"></Button>
<Button Background="Red" Content="btn2" ></Button>
</StackPanel>
</DockPanel>
</Grid>