WPF - 以编程方式设置TextBox的样式

时间:2018-06-15 15:00:34

标签: c# wpf xaml

在我的XAML我定义了一种特殊的风格。在这里,我可以使用我定义的资源访问这些:

<TextBox Style="{StaticResource TransparentInput}" Text="Hello World!" [...] />

但我如何设置组件的Style 以编程方式

我不想以编程方式添加组件

TextBox test = new TextBox();
test.Text = "Hello World!";
test.Style = [???] //<--- How i set here the static resource "TransparentInput"?

1 个答案:

答案 0 :(得分:4)

试试这个:

test.Style = TryFindResource("TransparentInput") as Style;