我正试图在这个登录门户的设计圆的堆栈面板的角落。我好像不知道该怎么做!在这个面板中有一些内容我已经错过了,以减少代码的长度!有没有一个明显的方法来做到这一点,我错过了?
`<StackPanel Width="315" Grid.Row="3" Background="#FFFFFF" Orientation="Vertical"> </StackPanel>`
cuxqih211#
最快的方法是将'StackPanel'放在'Border'里面
<Border Background="Pink" CornerRadius="15" BorderThickness="2" BorderBrush="Black" Padding="5" Grid.Row="3"> <StackPanel Width="315" Orientation="Vertical"> </StackPanel> </Border>
1条答案
按热度按时间cuxqih211#
最快的方法是将'StackPanel'放在'Border'里面