将按钮 XAML 更改为 C#
Change Button XAML to C#
我有一个选项卡控件,我在其中以编程方式添加选项卡项。我希望每个选项卡项都有一个关闭按钮。在谷歌搜索中,我找到了下面的 XAML 代码:
<Button Content="X" Cursor="Hand" DockPanel.Dock="Right"
Focusable="False" FontFamily="Courier" FontSize="9"
FontWeight="Bold" Margin="5,0,0,0" Width="16" Height="16" />
现在,我正在将此代码转换为等效的 C# 代码并努力处理一些属性。下面给出的是我到目前为止的代码。
var CloseButton = new Button()
{
Content = "X",
Focusable = false,
FontFamily = FontFamily = new System.Windows.Media.FontFamily("Courier"),
FontSize = 9,
Margin = new Thickness(5, 0, 0, 0),
Width = 16,
Height = 16
};
我需要有关 Cursor 等属性的帮助,DockPanel.Dock。非常感谢对此的任何帮助。谢谢!
游标是一组相当标准的类型。那里有静态 classes 可以让你访问其中的许多。使用 Cursors
class 得到 Hand
.
DockPanel.Dock
是附加的属性,不是按钮控件的属性。您必须为该依赖对象或其他方便的方法使用 属性 设置器(如果可用)。
var button = new Button
{
Content = "X",
Cursor = Cursors.Hand,
Focusable = false,
FontFamily = new FontFamily("Courier"),
FontSize = 9,
Margin = new Thickness(5, 0, 0, 0),
Width = 16,
Height = 16
};
// this is how the framework typically sets values on objects
button.SetValue(DockPanel.DockProperty, Dock.Right);
// or using the convenience method provided by the owning `DockPanel`
DockPanel.SetDock(button, Dock.Right);
然后设置绑定,创建适当的绑定对象并将其传递给元素的 SetBinding
方法:
button.SetBinding(Button.CommandProperty, new Binding("DataContext.CloseCommand")
{
RelativeSource = new RelativeSource { AncestorType = typeof(TabControl) },
});
button.SetBinding(Button.CommandParameterProperty, new Binding("Header"));
我有一个选项卡控件,我在其中以编程方式添加选项卡项。我希望每个选项卡项都有一个关闭按钮。在谷歌搜索中,我找到了下面的 XAML 代码:
<Button Content="X" Cursor="Hand" DockPanel.Dock="Right"
Focusable="False" FontFamily="Courier" FontSize="9"
FontWeight="Bold" Margin="5,0,0,0" Width="16" Height="16" />
现在,我正在将此代码转换为等效的 C# 代码并努力处理一些属性。下面给出的是我到目前为止的代码。
var CloseButton = new Button()
{
Content = "X",
Focusable = false,
FontFamily = FontFamily = new System.Windows.Media.FontFamily("Courier"),
FontSize = 9,
Margin = new Thickness(5, 0, 0, 0),
Width = 16,
Height = 16
};
我需要有关 Cursor 等属性的帮助,DockPanel.Dock。非常感谢对此的任何帮助。谢谢!
游标是一组相当标准的类型。那里有静态 classes 可以让你访问其中的许多。使用 Cursors
class 得到 Hand
.
DockPanel.Dock
是附加的属性,不是按钮控件的属性。您必须为该依赖对象或其他方便的方法使用 属性 设置器(如果可用)。
var button = new Button
{
Content = "X",
Cursor = Cursors.Hand,
Focusable = false,
FontFamily = new FontFamily("Courier"),
FontSize = 9,
Margin = new Thickness(5, 0, 0, 0),
Width = 16,
Height = 16
};
// this is how the framework typically sets values on objects
button.SetValue(DockPanel.DockProperty, Dock.Right);
// or using the convenience method provided by the owning `DockPanel`
DockPanel.SetDock(button, Dock.Right);
然后设置绑定,创建适当的绑定对象并将其传递给元素的 SetBinding
方法:
button.SetBinding(Button.CommandProperty, new Binding("DataContext.CloseCommand")
{
RelativeSource = new RelativeSource { AncestorType = typeof(TabControl) },
});
button.SetBinding(Button.CommandParameterProperty, new Binding("Header"));