- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个包含组合框的自定义用户控件。我添加了一个 ComboBoxWidth 依赖属性,以允许开发人员根据需要设置宽度。使用样式 setter ,我想将所有这些组合框的宽度设置为另一个用户控件上的相同值,以保持大小一致性。但是,它不起作用。如果我在每个控件上分别设置大小,它就会起作用。当在样式 setter 中指定尺寸时,它会被忽略。如果我将属性字符串从“ComboBoxWidth”更改为“Width”,所有控件的整个宽度都会更改。所以,看起来样式格式是正确的。我错过了什么吗?这是我第一次尝试将样式应用于我自己的自定义依赖项属性。
注意:AngleUserControl 基于通用用户控件(不包括在代码中创建的任何 xaml 控件)。 ComboBoxWidth 属性位于通用基类中。我不确定这是否与此有关。
样式代码(在包含多个 AngleUserControl 控件的用户控件中):
<UserControl.Resources>
<Style TargetType="wpfControls:AngleUserControl">
<Setter Property="ComboBoxWidth" Value="400"/>
</Style>
</UserControl.Resources>
单位控制基地:
/// <summary>
/// Control that displays value in different units depending on selected unit type.
/// </summary>
/// <typeparam name="TSelectionTypeEnum">The enumeration type for all the available units.</typeparam>
/// <typeparam name="TConverterType">The MultiValueConverter that converts the value between the different types of units.</typeparam>
/// <typeparam name="TValueType">The underlying type of the stored value.</typeparam>
public class UnitControlBase<TSelectionTypeEnum, TConverterType, TValueType> : UserControl
where TSelectionTypeEnum : struct, IConvertible
where TConverterType : IMultiValueConverter, new()
{
#region Private Fields
// Metadata for the dependency properties.
private static FrameworkPropertyMetadata valuePropertyMetadata = new FrameworkPropertyMetadata(default(TValueType));
private static FrameworkPropertyMetadata valueTypePropertyMetadata = new FrameworkPropertyMetadata(default(TSelectionTypeEnum));
private static FrameworkPropertyMetadata displayValueTypePropertyMetadata = new FrameworkPropertyMetadata(default(TSelectionTypeEnum));
private static FrameworkPropertyMetadata comboBoxWidthPropertyMetadata = new FrameworkPropertyMetadata(0.0);
private static FrameworkPropertyMetadata valueFormatPropertyMetadata = new FrameworkPropertyMetadata(string.Empty);
#endregion
#region Constructor
/// <summary>
/// Constructor
/// </summary>
public UnitControlBase()
{
ValueFormat = "#,##0.00";
ComboBoxWidth = 75.0;
// Create main grid and add to control.
Grid mainGrid = new Grid();
mainGrid.Name = "LayoutRoot";
this.AddChild(mainGrid);
// Create grid columns.
ColumnDefinition col1 = new ColumnDefinition();
col1.Width = GridLength.Auto;
ColumnDefinition col2 = new ColumnDefinition();
mainGrid.ColumnDefinitions.Add(col1);
mainGrid.ColumnDefinitions.Add(col2);
// Create the text box that will display the value.
Label displayValueLabel = new Label();
displayValueLabel.Name = "DisplayValueLabel";
Grid.SetColumn(displayValueLabel, 0);
mainGrid.Children.Add(displayValueLabel);
// Bind to the multi-value converter that will convert between the types.
MultiBinding mb = new MultiBinding();
mb.Converter = new TConverterType();
mb.Bindings.Add(new Binding("Value") { Source = this });
mb.Bindings.Add(new Binding("ValueType") { Source = this });
mb.Bindings.Add(new Binding("DisplayValueType") { Source = this });
mb.Bindings.Add(new Binding("ValueFormat") { Source = this });
displayValueLabel.SetBinding(Label.ContentProperty, mb);
displayValueLabel.HorizontalContentAlignment = System.Windows.HorizontalAlignment.Right;
// Create the combo box that will display selected unit.
ComboBox displayValueComboBox = new ComboBox();
displayValueComboBox.Name = "DisplayValueComboBox";
displayValueComboBox.SetBinding(ComboBox.WidthProperty, new Binding("ComboBoxWidth") { Source = this });
Grid.SetColumn(displayValueComboBox, 1);
mainGrid.Children.Add(displayValueComboBox);
// Bind available units and selected units.
displayValueComboBox.ItemsSource = Enum.GetValues(typeof(TSelectionTypeEnum));
displayValueComboBox.SetBinding(ComboBox.SelectedItemProperty, new Binding("DisplayValueType") { Source = this });
}
#endregion
#region Dependency Properties
/// <summary>
/// Value Dependency Property
/// </summary>
public static readonly DependencyProperty ValueProperty =
DependencyProperty.Register("Value", typeof(TValueType), typeof(UnitControlBase<TSelectionTypeEnum, TConverterType, TValueType>), valuePropertyMetadata);
/// <summary>
/// Value Type Dependency Property
/// </summary>
public static readonly DependencyProperty ValueTypeProperty =
DependencyProperty.Register("ValueType", typeof(TSelectionTypeEnum), typeof(UnitControlBase<TSelectionTypeEnum, TConverterType, TValueType>), valueTypePropertyMetadata);
/// <summary>
/// Display Value Type Dependency Property
/// </summary>
public static readonly DependencyProperty DisplayValueTypeProperty =
DependencyProperty.Register("DisplayValueType", typeof(TSelectionTypeEnum), typeof(UnitControlBase<TSelectionTypeEnum, TConverterType, TValueType>), displayValueTypePropertyMetadata);
/// <summary>
/// Combo Box Width Dependency Property
/// </summary>
public static readonly DependencyProperty ComboBoxWidthProperty =
DependencyProperty.Register("ComboBoxWidth", typeof(double), typeof(UnitControlBase<TSelectionTypeEnum, TConverterType, TValueType>), comboBoxWidthPropertyMetadata);
/// <summary>
/// Value Format Dependency Property
/// </summary>
public static readonly DependencyProperty ValueFormatProperty =
DependencyProperty.Register("ValueFormat", typeof(string), typeof(UnitControlBase<TSelectionTypeEnum, TConverterType, TValueType>), valueFormatPropertyMetadata);
#endregion
#region Public Properties
/// <summary>
/// The underlying stored value.
/// </summary>
public TValueType Value
{
get
{
return (TValueType)GetValue(ValueProperty);
}
set
{
SetValue(ValueProperty, value);
}
}
/// <summary>
/// The unit type for the underlying stored value.
/// </summary>
public TSelectionTypeEnum ValueType
{
get
{
return (TSelectionTypeEnum)GetValue(ValueTypeProperty);
}
set
{
SetValue(ValueProperty, value);
}
}
/// <summary>
/// The unit type for the displayed value.
/// </summary>
public TSelectionTypeEnum DisplayValueType
{
get
{
return (TSelectionTypeEnum)GetValue(DisplayValueTypeProperty);
}
set
{
SetValue(DisplayValueTypeProperty, value);
}
}
/// <summary>
/// Width of combo box displaying available units.
/// </summary>
public double ComboBoxWidth
{
get
{
return (double)GetValue(ComboBoxWidthProperty);
}
set
{
SetValue(ComboBoxWidthProperty, value);
}
}
/// <summary>
/// The format of the displayed value.
/// </summary>
public string ValueFormat
{
get
{
return (string)GetValue(ValueFormatProperty);
}
set
{
SetValue(ValueFormatProperty, value);
}
}
#endregion
}
AngleUserControl.cs
/// <summary>
/// Control allowing user to display a value in degrees, radians, or semicircles.
/// </summary>
public class AngleUserControl : UnitControlBase<AngleSelectionType, AngleMultiValueConverter, double>
{
#region Constructor
/// <summary>
/// Constructor.
/// </summary>
public AngleUserControl()
{
this.ComboBoxWidth = 175.0;
}
#endregion
}
最佳答案
依赖属性的所谓“本地值”,例如
this.ComboBoxWidth = 175.0;
具有比来自 Style Setter 的值更高的值优先级,例如
<Setter Property="ComboBoxWidth" Value="400"/>
因此 Style Setter 无效。
您应该通过覆盖依赖属性元数据来分配一个新的默认值:
public class AngleUserControl : ...
{
static AngleUserControl()
{
ComboBoxWidthProperty.OverrideMetadata(
typeof(AngleUserControl),
new PropertyMetadata(175d));
}
}
关于c# - WPF 样式 setter 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42098195/
因此,我需要获取在为其赋值时调用的 setter 的名称。像这样: var b = {}; var a = { set hey(value) { b[] = value; } } 我希望 se
我是 Android 编程的新手(~ 2 个月)有必要为几十个不同的变量设置 getter 吗? 例如—— //Yes I realise that this isn't 'dozens' publi
import Control.Lens import Control.Lens.TH data Foo = Foo { _bar, _baz :: Int } makeLenses ''
我有点困惑:我可以覆盖 setter/getter 但仍然使用 super setter/getter 吗?如果是 - 怎么办? 用例: class A { void set value(num
我有一个接收消息的应用程序。消息中存在可编辑的字段。当字段更改时,应将其保存到数据库中。不幸的是,setter 仅在 setter 的范围内更改给定字段的值。知道为什么会发生这种情况吗?这是 gett
C# 中有没有一种方法可以让 setter 从“某物”继承,这样每次为特定基类及其继承者调用 setter 时,我都可以运行一些代码? 我想做的是在我的基类上有一个名为 IsValid 的 bool
可能是一个我无法解决的非常简单的问题 - 我从 C# 开始,需要使用 getter/setter 方法向数组添加值,例如: public partial class Form1 : Form {
这两个属性实现有什么区别? public override string A { get { return "s"; } set { } } public override strin
是否可以使用 abc.abstractproperty 创建一个具体的 getter 但将 setter 抽象为每个继承类的不同。我为每个子类处理不同的 val 设置。 例如。 @abstractpr
我在某处看到类似下面的内容,想知道它是什么意思。我知道他们是getter和setter,但是想知道为什么字符串Type是这样定义的。谢谢你帮助我。 public string Type { get;
Public class Example { private int number; public Example(int number){ this.number =
假设我有这样的代码: public response MyMethod(Request req) { String id = req.getFirst().geId(); } 我已经模拟了主对
允许这样做: public int Age { get; set; } 但是应用程序是否为变量创建/分配空间?我经常这样做 private int age = 0; public int Age {
我有一个条件,我构造字符串 (finalValue) 的方式是基于我在输入中获得的非空值的数量。所以我想知道是否可以用一个不同的参数为字符串 (finalValue) 重载 setter 方法并根据我
例如,在这段代码中 var o = { set a(value) {this.b = value}, get a() {return this.b} } 是否有可能获得对 o.a 的 sett
我一直在努力了解 getter 和 setter,但没有深入了解。我读过 JavaScript Getters and Setters和 Defining Getters and Setters只是没
我想在我的类中添加一个 getter 和 setter。然而,setter 应该接收一个 querySelector,但 getter 返回一个新类型 pageSections。 我的问题是 gett
使用有什么好处: private var _someProp:String; public function set someProp(value:String):void { _somePr
当从域类调用它时,我想在我的 setter 中执行一些操作,而不是从 hibernate 中调用它时。此外,我正在使用 session 工厂,因此我无法使用 @PostLoad 来触发标志! 有人对此
人员类别: public class Person { private String firstName; private String lastName; public Pe
我是一名优秀的程序员,十分优秀!