gpt4 book ai didi

c# - WPF 子控件,仅样式内容部分

转载 作者:行者123 更新时间:2023-11-30 18:17:53 27 4
gpt4 key购买 nike

我创建了一个名为“Field”的自定义控件,它继承自 ContentControl 并包含一个 Grid 和一个 label 来公开字段标签和一个 ContentPresenter 以允许根据我们要编辑的数据放置控件。

然后我创建了一个名为“TextField”的自定义控件,它继承自 Field,应该将一个 TextBox 放入内容中。

以下是 Generic.xaml 中的样式:

<Style TargetType="{x:Type controls:Field}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type controls:Field}">
<Border Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">
<Grid x:Name="grd" Margin="3px">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="{Binding Path=LabelLength, RelativeSource={RelativeSource AncestorType=Control}}" />
<ColumnDefinition Width="{Binding Path=ContentLength, RelativeSource={RelativeSource AncestorType=Control}}" />
</Grid.ColumnDefinitions>
<Label Grid.Column="0" Content="{Binding Path=Label, RelativeSource={RelativeSource AncestorType=Control}}" />
<ContentPresenter Grid.Column="1" Content="{TemplateBinding Content}" Margin="{TemplateBinding Padding}" />
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

<Style TargetType="{x:Type controls:FieldText}" BasedOn="{StaticResource {x:Type controls:Field}}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type controls:FieldText}">
<TextBox Grid.Column="1" MaxLines="1" TextWrapping="NoWrap" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

根据证据,这在使用 TextField 时仅显示一个文本框。但是我怎样才能通过让控件的其余部分继承父样式来仅设置内容样式(例如本例中的 TextBox)呢?

我知道我可以为每个派生控件重写整个控件,但这违反了继承原则,不是吗?将意味着重复代码(此处重复标记),如果我更改父“字段”中的任何内容,我将不得不在每个子控件中更改它,并有出错的风险...

最佳答案

将父控件的 Content 属性设置为 TextBox 的实例,您可以根据需要设置样式:

<controls:Field Background="Gray">
<TextBox Grid.Column="1" MaxLines="1" TextWrapping="NoWrap" />
</controls:Field>

这就是应该如何使用 ContentControl

不能只覆盖ControlTemplate的一部分:

WPF: Is there a way to override part of a ControlTemplate without redefining the whole style?

关于c# - WPF 子控件,仅样式内容部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42645440/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com