Files
docs-desktop/dotnet-desktop-guide/net/wpf/properties/snippets/attached-properties-overview/vb/MainWindow.xaml
T
2021-10-22 10:23:20 -07:00

16 lines
484 B
XML

<Window x:Class="CodeSampleVb.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Attached Properties Overview" Height="100" Width="400">
<StackPanel>
<!--<SetAttachedPropertyInXaml>-->
<DockPanel>
<TextBox DockPanel.Dock="Top">Enter text</TextBox>
</DockPanel>
<!--</SetAttachedPropertyInXaml>-->
</StackPanel>
</Window>