mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 09:06:04 +02:00
16 lines
484 B
XML
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>
|