WPF寻找创建边框的方法,用文本标记框架

时间:2013-08-05 21:27:19

标签: c# wpf forms xaml

像这样的东西

enter image description here

在Windows窗体中可用,但我忘了它的名字。但我只是在寻找一些好的边界来勾勒出允许我命名该地区的区域。

1 个答案:

答案 0 :(得分:18)

听起来你需要一个GroupBox。我写了一篇关于这些的文章,但我不会发布链接,因为我不喜欢使用StackOverflow来推广网站。我将发布开放示例XAML,因此您可以看到效果并检查它是否是您想要的。

<Window x:Class="GroupBoxDemo.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="GroupBox Demo"
        Width="250"
        Height="180">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="Auto"/>
        </Grid.RowDefinitions>

        <GroupBox Header="Mouse Handedness">
            <StackPanel>
                <RadioButton Content="Left-Handed" Margin="5"/>
                <RadioButton Content="Right-Handed" Margin="5" IsChecked="True"/>
            </StackPanel>
        </GroupBox>

        <GroupBox Grid.Row="1" Header="Double Click Speed">
            <Slider Margin="5" />
        </GroupBox>
    </Grid>
</Window>

看起来像:

WPF Groupbox