| 12345678910111213141516171819202122232425262728293031323334 |
- <Window x:Class="LocalizationTool.Views.AddLanguageWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:hc="https://handyorg.github.io/handycontrol"
- Title="新增语言" Height="240" Width="480"
- WindowStartupLocation="CenterOwner"
- ResizeMode="NoResize"
- Background="#F5F6FA">
- <Grid Margin="24">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <TextBlock Text="选择要新增的语言" FontSize="16" FontWeight="Bold" Foreground="#333"/>
- <TextBlock Grid.Row="1" Text="从语言目录中选择(自动对应百度翻译语言代码)"
- FontSize="11" Foreground="#888" Margin="0,4,0,16"/>
- <ComboBox Grid.Row="2" Height="34" VerticalContentAlignment="Center"
- ItemsSource="{Binding Languages}"
- DisplayMemberPath="Display"
- SelectedItem="{Binding Selected}"
- Style="{StaticResource ComboBoxExtend}"/>
- <StackPanel Grid.Row="3" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,24,0,0">
- <Button Content="确定" Width="88" Style="{StaticResource ButtonPrimary}"
- Command="{Binding ConfirmCommand}" Margin="0,0,10,0"/>
- <Button Content="取消" Width="88" Style="{StaticResource ButtonDefault}"
- Command="{Binding CancelCommand}"/>
- </StackPanel>
- </Grid>
- </Window>
|