MPTxtToJson/MainWindow.xaml
tk 3b664cd951 【类 型】:feat
【主	题】:添加sound字段 自定义设置
【描	述】:
	[原因]:
	[过程]:
	[影响]:
【结	束】

# 类型 包含:
# feat:新功能(feature)
# fix:修补bug
# docs:文档(documentation)
# style: 格式(不影响代码运行的变动)
# refactor:重构(即不是新增功能,也不是修改bug的代码变动)
# test:增加测试
# chore:构建过程或辅助工具的变动
2024-07-12 15:23:42 +08:00

16 lines
1.3 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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="250" Width="400">
<Grid Margin="0,0,1,0">
<Button Content="导入MP航点" HorizontalAlignment="Center" Margin="0,85,0,0" VerticalAlignment="Top" Width="75" Click="HandleImportTxt"/>
<Button x:Name="JsonButton" Content="导出Josn" HorizontalAlignment="Center" Margin="0,125,0,0" Width="75" IsEnabled="False" Click="HandleSaveJsonFile" VerticalAlignment="Top"/>
<TextBox x:Name="soundField" HorizontalAlignment="Center" Margin="0,45,0,0" TextWrapping="Wrap" Text="请订餐号为:$food_sn$号,尾号$telTail$的先生取餐。" Width="340" VerticalAlignment="Top" Height="20"/>
<Label Content="payload航点94添加如下sound 键值 $$ 包裹数据库对应字段" HorizontalAlignment="Left" Margin="30,20,0,0" VerticalAlignment="Top" Background="White" FontSize="8" FontStyle="Italic" FontWeight="Bold"/>
</Grid>
</Window>