WPF在用户控件的中间或内部放置一个组框
本文关键字:一个 控件 用户 中间 内部 WPF | 更新日期: 2023-09-27 18:10:31
我得到了一个名为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>
我的问题是我想添加一个组框(具有个性化组件/刺激物控件)到将显示在网格中的窗口。列="2"的Palabok用户控件。然后,我将对另一个WPF窗口使用相同的用户控件,但将图像控件放在网格上。Column="2"而不是组框,Palabok的用户控件,但我似乎不能把控件在Palabok的用户控件。
我认为你的控件应该继承自ItemsControl
请查看:http://drwpf.com/blog/category/item-containers/