14 lines
850 B
Plaintext
14 lines
850 B
Plaintext
![]() |
<Window x:Class="MPTxtToJson.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:MPTxtToJson"
|
||
|
mc:Ignorable="d"
|
||
|
Title="MPTxtToJson" Height="150" Width="200">
|
||
|
<Grid Margin="0,0,0.6,-0.2">
|
||
|
<Button Content="导入MP航点" HorizontalAlignment="Left" Margin="60,0,0,83" VerticalAlignment="Bottom" Width="75" Click="HandleImportTxt"/>
|
||
|
<Button x:Name="JsonButton" Content="导出Josn" HorizontalAlignment="Left" Margin="60,0,0,36" VerticalAlignment="Bottom" Width="75" IsEnabled="False" Click="HandleSaveJsonFile"/>
|
||
|
</Grid>
|
||
|
</Window>
|