You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
606 B
16 lines
606 B
<Window xmlns="http://schemas.microsoft.com/netfx/2007/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:sys="clr-namespace:System;assembly=mscorlib" |
|
Name="root" |
|
Title="Hydralisk"> |
|
<Window.Resources> |
|
<sys:String x:Key="r1">Title</sys:String> |
|
<sys:String x:Key="r2">Width</sys:String> |
|
</Window.Resources> |
|
<StackPanel> |
|
<Button Name="b1" |
|
Width="100" |
|
Content="Button" /> |
|
<TextBlock Text="{Binding Path={StaticResource r1}, ElementName=root}" /> |
|
</StackPanel> |
|
</Window> |