-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProfileSelectionWindow.xaml
More file actions
27 lines (24 loc) · 1.37 KB
/
ProfileSelectionWindow.xaml
File metadata and controls
27 lines (24 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Window x:Class="XColumn.ProfileSelectionWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ui="http://schemas.modernwpf.com/2019"
Title="プロファイル選択" Height="240" Width="350"
WindowStartupLocation="CenterOwner" ResizeMode="NoResize"
ShowInTaskbar="False"
ui:WindowHelper.UseModernWindowStyle="True"
Background="{DynamicResource SystemControlPageBackgroundChromeLowBrush}">
<StackPanel Margin="15">
<TextBlock Name="MessageText"
Text="対象のプロファイルを選択してください:"
Margin="0,0,0,10" TextWrapping="Wrap"
Foreground="{DynamicResource SystemControlPageTextBaseHighBrush}"/>
<ComboBox Name="ProfileCombo"
DisplayMemberPath="Name"
Margin="0,0,0,20" Padding="5" Height="32"
VerticalContentAlignment="Center"/>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
<Button Content="キャンセル" IsCancel="True" Width="90" Margin="0,0,10,0" Padding="5"/>
<Button Name="ActionButton" Content="OK" IsDefault="True" Click="OkButton_Click" Width="90" Padding="5" FontWeight="Bold"/>
</StackPanel>
</StackPanel>
</Window>