开发者

Problem with align button in treeview in wpf

I've got something:

<HierarchicalDataTemplate DataType="{x:Type MyService:Country}"
                                  ItemsSource="{Binding Path=ListOfAreas}">
                <StackPanel Orientation="Horizontal">
                    <TextBlock TextAlignment="Center" Text="{Binding Path=Name}"/>
                    <Button Name="MyButton" Height="20" Content="Add Area"></Butto开发者_如何学运维n>
                </StackPanel>
            </HierarchicalDataTemplate>

It works, but not nice way, because I want to have TextBox at middle hight of button. Now it is at top hight of button.

for example:

NOW:

MYTEXTBOX ||||||||||||
          ||Add Area|| 
          ||||||||||||

Expected result

          ||||||||||||
MYTEXTBOX ||Add Area|| 
          ||||||||||||


You want to set VerticalAlignment to Center (instead of TextAlignment) like this:

<TextBlock VerticalAlignment="Center" ... />
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜