Files
WpfExtended/WpfExtended.Test/MainWindow.xaml
T
Alexandru Macocian 34a37ce206 Change extension namespace.
Implement extended launcher with DI.
Test launching all effects.
2021-04-01 14:00:35 +02:00

15 lines
658 B
XML

<Window x:Class="WpfExtended.Test.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfExtended.Test"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<ScrollViewer>
<WrapPanel x:Name="WrapPanel" VerticalAlignment="Stretch" HorizontalAlignment="Stretch"></WrapPanel>
</ScrollViewer>
</Grid>
</Window>