11

像这样的东西

在此处输入图像描述

可以在 windows 窗体中使用,但我忘记了它叫什么。但我只是在寻找一些好的边界来勾勒出允许我命名该区域的区域。

4

1 回答 1

24

听起来你需要一个 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 分组框

于 2013-08-05T21:37:23.797 回答