mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-12-02 15:59:13 +00:00
18 lines
1.2 KiB
XML
18 lines
1.2 KiB
XML
<Page x:Class="UWUVCI_AIO_WPF.UI.Frames.InjectFrames.Bases.BaseContainerFrame"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:UWUVCI_AIO_WPF.UI.Frames.InjectFrames.Bases"
|
|
mc:Ignorable="d"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
d:DesignHeight="297" d:DesignWidth="403"
|
|
Title="BaseContainerFrame">
|
|
|
|
<Grid DataContext="{StaticResource mvm}">
|
|
<TextBlock Text="Choose a Base from the dropdown menu" Margin="10,2,10,275" VerticalAlignment="Center" HorizontalAlignment="Center" TextAlignment="Center" FontSize="15" Width="383"></TextBlock>
|
|
<ComboBox x:Name="cbCombo" HorizontalAlignment="Left" Margin="10,27,0,0" VerticalAlignment="Top" Width="383" Background="#00CFCFCF" BorderBrush="#FF008BFF" ItemsSource="{Binding test}" SelectionChanged="ComboBox_SelectionChanged"/>
|
|
<Frame Name="fLoadFrame" HorizontalAlignment="Left" Height="227" Margin="10,60,0,0" VerticalAlignment="Top" Width="383"/>
|
|
|
|
</Grid>
|
|
</Page>
|