
【主 题】:初始化 【描 述】: [原因]: [过程]: [影响]: 【结 束】 # 类型 包含: # feat:新功能(feature) # fix:修补bug # docs:文档(documentation) # style: 格式(不影响代码运行的变动) # refactor:重构(即不是新增功能,也不是修改bug的代码变动) # test:增加测试 # chore:构建过程或辅助工具的变动
14 lines
850 B
XML
14 lines
850 B
XML
<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>
|