在我的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"?
答案 0 :(得分:4)
试试这个:
test.Style = TryFindResource("TransparentInput") as Style;