mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 09:06:04 +02:00
* Add article, code, toc, and redirects * Resolve vb project issues * Update .openpublishing.redirection.json Co-authored-by: Andy (Steve) De George <[email protected]>
30 lines
1.3 KiB
XML
30 lines
1.3 KiB
XML
<Window x:Class="CodeSampleVb.MainWindow"
|
|
xmlns:local="clr-namespace:CodeSampleVb.CodeSampleVb"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Property value inheritance" Height="200" Width="400" Background="Yellow">
|
|
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="260*"></ColumnDefinition>
|
|
<ColumnDefinition Width="260*"></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!--<XamlElementTree>-->
|
|
<Canvas x:Name="canvas1" Grid.Column="0" Margin="20" Background="Orange" AllowDrop="True">
|
|
<StackPanel x:Name="stackPanel1" Margin="20" Background="Green">
|
|
<Label x:Name="label1" Margin="20" Height="40" Width="40" Background="Blue"/>
|
|
</StackPanel>
|
|
</Canvas>
|
|
<!--</XamlElementTree>-->
|
|
|
|
<local:Canvas_AllowDropInheritDisabled Grid.Column="1" Margin="20" Background="Orange" AllowDrop="True">
|
|
<StackPanel Name="stackPanel11" Margin="20" Background="Green">
|
|
<Label Name="label11" Margin="20" Height="40" Width="40" Background="Blue"/>
|
|
</StackPanel>
|
|
</local:Canvas_AllowDropInheritDisabled>
|
|
|
|
</Grid>
|
|
|
|
</Window>
|