mirror of
https://github.com/Dev-Wiki/HarmonyDevTools.git
synced 2025-04-04 20:57:29 +08:00
增加 get udid
This commit is contained in:
parent
54b26c3666
commit
49b8720212
@ -12,8 +12,9 @@
|
||||
<Copyright>DevWiki</Copyright>
|
||||
<PackageIcon>icon.ico</PackageIcon>
|
||||
<PackageTags>OpenHarmony,HarmonyOS</PackageTags>
|
||||
<AssemblyVersion>1.0.0</AssemblyVersion>
|
||||
<FileVersion>1.0.0</FileVersion>
|
||||
<AssemblyVersion>1.0.1</AssemblyVersion>
|
||||
<FileVersion>1.0.1</FileVersion>
|
||||
<Version>1.0.1</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -61,6 +61,8 @@
|
||||
</Border>
|
||||
|
||||
<Button x:Name="GetPhoto" Grid.Row="3" Grid.Column="0" Width="100" Height="36" Content="导出照片" Click="GetPhoto_OnClick" />
|
||||
|
||||
<Button x:Name="GetUDID" Grid.Row="3" Grid.Column="1" Width="100" Height="36" Content="UDID" Click="GetUDID_OnClick" />
|
||||
|
||||
<TextBox x:Name="CommandTb" Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="5" Margin="10,0,10,0"
|
||||
Height="32" VerticalContentAlignment="Center" control:TextBoxHelper.Placeholder="输入命令不需要以 hdc 开头"/>
|
||||
|
@ -127,4 +127,10 @@ public partial class MainWindow : Window
|
||||
string result = await Task.Run(() => HdcUtil.ExportFile(path));
|
||||
AppendHintAndScrollToEnd($"export result: {result} \n");
|
||||
}
|
||||
|
||||
private void GetUDID_OnClick(object sender, RoutedEventArgs e)
|
||||
{
|
||||
CommandTb.Text = "shell bm get --udid";
|
||||
GetCommandAndExecute();
|
||||
}
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
set version=1.0.0
|
||||
set version=1.0.1
|
||||
|
||||
if not "%~1"=="" (
|
||||
set version=%1
|
||||
|
Loading…
Reference in New Issue
Block a user