WPF在用户控件的中间或内部放置一个组框

时间:2014-06-27 17:49:15

标签: c# wpf xaml

我有一个名为Palabok的用户控件:

<UserControl x:Class="NeocClinic.WPFSystem.Templatas.Palabok"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition/>
            <ColumnDefinition/>
            <ColumnDefinition/>
        </Grid.ColumnDefinitions>

        <Button Grid.Column="0"></Button>
    </Grid>
</UserControl>

然后我将它实现到我的WPF窗口:

<Window x:Class="NeocClinic.WPFSystem.IrritantDetailsForm"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:windowsControls="clr-namespace:NeocClinic.WPFSystem.Templatas"
        Title="IrritantDetailsForm" Height="300" Width="300">
    <windowsControls:Palabok ></windowsControls:Palabok>
</Window>

我的问题是我想将一个Group Box(带有个性化的组件/ Irritants控件)添加到将在Grid中显示的Window.Column =&#34; 2&#34; Palabok用户控件。然后我将使用相同的用户控件到另一个WPF窗口,但将一个Image控件放到Grid.Column =&#34; 2&#34;而不是Palabok用户控件的Group Box,但我似乎可以将控件放在Palabok用户控件中。

1 个答案:

答案 0 :(得分:0)

我认为你的控件应该继承自 ItemsControl

请检查:http://drwpf.com/blog/category/item-containers/