完善编辑器翻译功能,优化翻译接口参数传递

CHL
Miyu Kawaii 1 year ago
parent fccec7a23f
commit ceb843dd45

@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}

@ -0,0 +1,6 @@
{
"ExpandedNodes": [
""
],
"PreviewInSolutionExplorer": false
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -36,7 +36,7 @@
BorderBrush="Gray" HorizontalAlignment="Center" VerticalAlignment="Center">
<MenuItem Header="查找"/>
<MenuItem Header="替换"/>
<MenuItem Header="翻译加载的文件"/>
<MenuItem Header="翻译加载的文件" Click="Translate_Click"/>
</MenuItem>
<MenuItem
Header=" 解包"
@ -91,7 +91,7 @@
MouseDoubleClick="TreeViewItem_DoubleClick"
BorderBrush="Black"
Loaded="TreeView_Loaded"
Grid.Row="0">
Grid.Row="0" Grid.RowSpan="2">
<TreeView.ItemTemplate>
<HierarchicalDataTemplate x:Name="CurrentPath" ItemsSource="{Binding Children}">
<StackPanel Orientation="Horizontal">
@ -181,103 +181,6 @@
</Style>
</TreeView.ItemContainerStyle>
</TreeView>
<TreeView
Background="AliceBlue"
x:Name="OutputTreeView"
BorderBrush="Black"
MouseDoubleClick="OutputTreeViewItem_DoubleClick"
Loaded="OutputTreeView_Loaded"
Grid.Row="1">
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding Children}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}" Margin="0,0,0,0"/>
</StackPanel>
</HierarchicalDataTemplate>
</TreeView.ItemTemplate>\
<TreeView.ItemContainerStyle>
<Style TargetType="{x:Type TreeViewItem}">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="Foreground" Value="Black"/>
<Setter Property="Padding" Value="1,2"/>
<Setter Property="HorizontalContentAlignment" Value="{Binding HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
<Setter Property="VerticalContentAlignment" Value="{Binding VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TreeViewItem}">
<Border x:Name="Bd" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" Padding="{TemplateBinding Padding}" SnapsToDevicePixels="True">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition/>
</Grid.RowDefinitions>
<ToggleButton x:Name="Expander" ClickMode="Press" IsChecked="{Binding IsExpanded, RelativeSource={RelativeSource TemplatedParent}}">
<ToggleButton.Style>
<Style TargetType="{x:Type ToggleButton}">
<Setter Property="Focusable" Value="False"/>
<Setter Property="Width" Value="16"/>
<Setter Property="Height" Value="16"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ToggleButton}">
<Border Background="Transparent" Height="16" Padding="5,5,5,5" Width="16">
<Path x:Name="ExpandPath" Data="M0,0 L0,6 L6,0 z" Fill="Black" HorizontalAlignment="Center" Margin="1,1,1,1" VerticalAlignment="Center"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsChecked" Value="True">
<Setter Property="Data" TargetName="ExpandPath" Value="M0,6 L6,6 L0,0 z"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ToggleButton.Style>
</ToggleButton>
<ContentPresenter x:Name="PART_Header" ContentSource="Header" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
<ItemsPresenter x:Name="ItemsHost" Grid.Column="1" Grid.Row="1"/>
</Grid>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsExpanded" Value="False">
<Setter Property="Visibility" TargetName="ItemsHost" Value="Collapsed"/>
</Trigger>
<Trigger Property="HasItems" Value="False">
<Setter Property="Visibility" TargetName="Expander" Value="Hidden"/>
</Trigger>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="Blue"/>
<Setter Property="Foreground" Value="White"/>
</Trigger>
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property="HasHeader" Value="False"/>
<Condition Property="Width" Value="Auto"/>
</MultiTrigger.Conditions>
<Setter Property="MinWidth" Value="75"/>
</MultiTrigger>
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property="HasHeader" Value="False"/>
<Condition Property="Height" Value="Auto"/>
</MultiTrigger.Conditions>
<Setter Property="MinHeight" Value="19"/>
</MultiTrigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</TreeView.ItemContainerStyle>
</TreeView>
</Grid>
<Grid Name="TextPreview" Grid.Row="1" Grid.ColumnSpan="2" Grid.Column="1">
@ -315,12 +218,6 @@
</ListView>
</Grid>
</Grid>
<TextBox
Name="StatusBar"
BorderBrush="Black"
Grid.Row="2">
</TextBox>
<StatusBar Grid.Row="2"/>
</Grid>
</Window>

@ -2,6 +2,7 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.IO;
using System.Threading.Tasks;
using System.Windows;
@ -9,6 +10,7 @@ using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using WpfApp2.model;
using WpfApp2.tools;
using WpfApp2.view;
namespace WpfApp2
@ -18,6 +20,8 @@ namespace WpfApp2
/// </summary>
public partial class MainWindow : Window
{
private AllClassAndInterfaceWellBeManipulatedInThisFileAndCallThroughFunction a = new();
private string JSONstring;
public MainWindow()
{
InitializeComponent();
@ -28,10 +32,9 @@ namespace WpfApp2
{
TreeView item = e.Source as TreeView;
var sourceObject = item.SelectedItem as FileItem;
//TreeViewItem item = sender as TreeViewItem;
if (sourceObject.IsDirectory != true)
{
string JSONstring = File.ReadAllText(sourceObject.path);
JSONstring = File.ReadAllText(sourceObject.path);
List<Charactor> chara = JsonConvert.DeserializeObject<List<Charactor>>(JSONstring);
InputList.ItemsSource = (System.Collections.IEnumerable)chara;
}
@ -39,18 +42,7 @@ namespace WpfApp2
{
ExplorerTreeView.ItemsSource = CreateFileList(sourceObject.path);
}
//string JSONstring1 = File.ReadAllText(FileItem.getJsonPath);
//List<Charactor> chara1 = JsonConvert.DeserializeObject<List<Charactor>>(JSONstring1);
//InputList.ItemsSource = (System.Collections.IEnumerable)chara1;
//tempTranslationVoid(chara1);
}
private void OutputTreeViewItem_DoubleClick(Object sender, MouseButtonEventArgs e)
{
TreeView treeView = e.Source as TreeView;
var sourceObject = treeView.SelectedItem as FileItem;
OutputTreeView.ItemsSource = CreateFileList(sourceObject.path);
}
private void TreeView_Loaded(object sender, RoutedEventArgs e)
{
ExplorerTreeView.Items.Clear();
@ -58,13 +50,6 @@ namespace WpfApp2
var rootNode = CreateFileList(path);
ExplorerTreeView.ItemsSource = rootNode;
}
private void OutputTreeView_Loaded(object sender, RoutedEventArgs e)
{
OutputTreeView.Items.Clear();
var path = @"E:\Works\software636\src\WpfApp2\WpfApp2\OutputFile";
var rootNode = CreateFileList(path);
OutputTreeView.ItemsSource = rootNode;
}
//创建模板类利用listgetset实现文件列表的读取
public static ObservableCollection<FileItem> CreateFileList(string path)
@ -153,5 +138,19 @@ namespace WpfApp2
var window = new ProgressSelect();
window.Show();
}
private void Translate_Click(object sender, RoutedEventArgs e)
{
List<Charactor> chara = JsonConvert.DeserializeObject<List<Charactor>>(JSONstring);
List<string> temp = new();
foreach (Charactor cha in chara)
{
temp.Add(cha.message);
}
string c = String.Join("\r", temp);
string result = a.NetBaiDu(c,chara);
List<Charactor> outPut = JsonConvert.DeserializeObject<List<Charactor>>(result);
Outpulist.ItemsSource = outPut;
}
}
}

@ -1,211 +0,0 @@
[
{
"name": "将臣",
"message": "「………」"
},
{
"message": "按照紫蝶的话,决定吹夜风。"
},
{
"message": "话虽如此,也不是没有目的的夜晚散步。"
},
{
"name": "将臣",
"message": "——呼。"
},
{
"message": "一边笔直地挥下竹刀,一边吸引左脚。"
},
{
"message": "突然停住的竹刀。另外,笔直地举起,把吸引的左脚向后下降。"
},
{
"name": "将臣",
"message": "——呼。"
},
{
"message": "然后再次挥动竹刀的同时,这次右脚下降。"
},
{
"message": "就这样一直保持着正面的姿态,脑子里却一直在想事情。"
},
{
"name": "将臣",
"message": "回去了……不回去了……回去了……不回去了。"
},
{
"message": "每次挥下竹刀,都会说出那样的话。"
},
{
"message": "话虽如此,因为不是花占卜,所以也不是有确切的结束。"
},
{
"message": "一想到这一点,手臂的动作自然地变得缓慢了。"
},
{
"name": "将臣",
"message": "“……嗯……”"
},
{
"message": "并不是什么让人烦恼的事。"
},
{
"name": "将臣",
"message": "结果,我想怎么做,就这样而已。"
},
{
"message": "如果你想回到适合居住的街道就回去。"
},
{
"message": "也不是再也回不来了。祖父和廉太郎们也在。"
},
{
"message": "只要想来,马上就能再来。"
},
{
"message": "相反,如果你想在这里多待一会儿,那也就说出来就好了。"
},
{
"message": "也可以在旅馆和廉太郎家受到照顾吧。"
},
{
"message": "应该不会有那么讨厌的表情……大概吧。"
},
{
"message": "所以,只要给出答案……。"
},
{
"name": "将臣",
"message": "像这样烦恼的话……应该是想留下来吧。"
},
{
"message": "为什么胸口不舒服呢?"
},
{
"message": "有什么东西卡住了,怎么也做不到,很恶心……。"
},
{
"name": "将臣",
"message": "不能断言留下,那是最重要的理由吧……?"
},
{
"name": "将臣",
"message": "光是知道了这一点,就有挥舞竹刀的价值吧"
},
{
"message": "运动很好,差不多该回房间了吧。"
},
{
"name": "将臣",
"message": "……话说回来,里面还有灯。"
},
{
"message": "也许连那样的事情都没注意到,视野变得狭窄了。"
},
{
"name": "将臣",
"message": "有谁在吗?"
},
{
"message": "进去一看,那里有一个意外的身影。"
},
{
"message": "以认真的表情跳舞的朝武先生的身姿。"
},
{
"message": "虽然是在舞蹈的供奉上看了好几次的样子,但是在这样的时间里看还是第一次呢。"
},
{
"message": "大部分都是在日落之前结束的。"
},
{
"message": "恐怕到现在为止都是考虑到在山上驱魔的吧。"
},
{
"name": "将臣",
"message": "「………」"
},
{
"message": "没有注意到我的事吗,凛然的气氛不破坏继续飞舞的朝武先生。"
},
{
"message": "还是那么厉害的集中力啊。"
},
{
"message": "没有混乱的动作,已经渗透到身体里了。"
},
{
"message": "和确认每一个动作的我的样子完全不同。"
},
{
"message": "被那美丽所吸引……一见钟情。"
},
{
"name": "将臣",
"message": "(……这是你第几次看得入迷了?)"
},
{
"name": "将臣",
"message": "“(至今为止看过好几次的舞,现在也这样看得入迷了。)”"
},
{
"name": "将臣",
"message": "「(………)」"
},
{
"message": "然后我一直静静地眺望着,直到朝武的舞蹈结束。"
},
{
"name": "芳乃",
"message": "……啊……"
},
{
"name": "将臣",
"message": "辛苦了,朝武先生。"
},
{
"name": "芳乃",
"message": "啊,啊,有地,你在干什么?连竹刀都拿着……"
},
{
"name": "芳乃",
"message": "有可疑的人吗?"
},
{
"name": "将臣",
"message": "不是的。我只是假装而已。随便借一下院内。"
},
{
"name": "芳乃",
"message": "我想这也没关系……从这个时间开始?弄不好的话有地先生会被当成可疑的人哦?"
},
{
"name": "将臣",
"message": "……也许确实如此。"
},
{
"name": "芳乃",
"message": "嗯,我想晚上参拜的人应该没有……"
},
{
"name": "将臣",
"message": "朝武才是。为什么要从这个时间开始跳舞?"
},
{
"name": "芳乃",
"message": "那个……爸爸和茉子说今天可以休息。"
},
{
"name": "芳乃",
"message": "虽然试着按照那句话休息了一下……但是怎么也静不下来。"
},
{
"message": "那么长的时间里,每天都不缺吧。"
},
{
"message": "我的训练并没有那么熟悉身体。"
},
{
"message":"如果不烦恼的话,大概很高兴休息了吧。"
}
]

@ -0,0 +1,93 @@
{
"format": 1,
"restore": {
"E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj": {}
},
"projects": {
"E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj",
"projectName": "WpfApp2",
"projectPath": "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj",
"packagesPath": "C:\\Users\\82590\\.nuget\\packages\\",
"outputPath": "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\82590\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows10.0.19041.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows10.0.19041": {
"targetAlias": "net6.0-windows10.0.19041.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows10.0.19041": {
"targetAlias": "net6.0-windows10.0.19041.0",
"dependencies": {
"CommunityToolkit.Mvvm": {
"target": "Package",
"version": "[8.2.1, )"
},
"Newtonsoft.Json": {
"target": "Package",
"version": "[13.0.3, )"
},
"System.Drawing.Common": {
"target": "Package",
"version": "[7.0.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.Windows.SDK.NET.Ref",
"version": "[10.0.19041.28, 10.0.19041.28]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.Windows.SDK.NET.Ref": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WPF": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
}
}
}
}
}

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\82590\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\82590\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)communitytoolkit.mvvm\8.2.1\buildTransitive\netstandard2.1\CommunityToolkit.Mvvm.targets" Condition="Exists('$(NuGetPackageRoot)communitytoolkit.mvvm\8.2.1\buildTransitive\netstandard2.1\CommunityToolkit.Mvvm.targets')" />
</ImportGroup>
</Project>

@ -0,0 +1,93 @@
{
"format": 1,
"restore": {
"E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj": {}
},
"projects": {
"E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj",
"projectName": "WpfApp2",
"projectPath": "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj",
"packagesPath": "C:\\Users\\82590\\.nuget\\packages\\",
"outputPath": "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\82590\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows10.0.19041.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows10.0.19041": {
"targetAlias": "net6.0-windows10.0.19041.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows10.0.19041": {
"targetAlias": "net6.0-windows10.0.19041.0",
"dependencies": {
"CommunityToolkit.Mvvm": {
"target": "Package",
"version": "[8.2.1, )"
},
"Newtonsoft.Json": {
"target": "Package",
"version": "[13.0.3, )"
},
"System.Drawing.Common": {
"target": "Package",
"version": "[7.0.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.Windows.SDK.NET.Ref",
"version": "[10.0.19041.28, 10.0.19041.28]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.Windows.SDK.NET.Ref": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WPF": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
}
}
}
}
}

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\82590\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\82590\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)communitytoolkit.mvvm\8.2.1\buildTransitive\netstandard2.1\CommunityToolkit.Mvvm.targets" Condition="Exists('$(NuGetPackageRoot)communitytoolkit.mvvm\8.2.1\buildTransitive\netstandard2.1\CommunityToolkit.Mvvm.targets')" />
</ImportGroup>
</Project>

@ -0,0 +1,93 @@
{
"format": 1,
"restore": {
"E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj": {}
},
"projects": {
"E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj",
"projectName": "WpfApp2",
"projectPath": "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\WpfApp2.csproj",
"packagesPath": "C:\\Users\\82590\\.nuget\\packages\\",
"outputPath": "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\82590\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows10.0.19041.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows10.0.19041": {
"targetAlias": "net6.0-windows10.0.19041.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows10.0.19041": {
"targetAlias": "net6.0-windows10.0.19041.0",
"dependencies": {
"CommunityToolkit.Mvvm": {
"target": "Package",
"version": "[8.2.1, )"
},
"Newtonsoft.Json": {
"target": "Package",
"version": "[13.0.3, )"
},
"System.Drawing.Common": {
"target": "Package",
"version": "[7.0.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.Windows.SDK.NET.Ref",
"version": "[10.0.19041.28, 10.0.19041.28]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.Windows.SDK.NET.Ref": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WPF": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
}
}
}
}
}

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\82590\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\82590\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)communitytoolkit.mvvm\8.2.1\buildTransitive\netstandard2.1\CommunityToolkit.Mvvm.targets" Condition="Exists('$(NuGetPackageRoot)communitytoolkit.mvvm\8.2.1\buildTransitive\netstandard2.1\CommunityToolkit.Mvvm.targets')" />
</ImportGroup>
</Project>

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D70B23DF8823E182C044042705ED696087B24E26"
#pragma checksum "..\..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "F8BE49295370120D311FFA42A0331492867B45D9"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -122,15 +122,7 @@ namespace WpfApp2 {
#line hidden
#line 187 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TreeView OutputTreeView;
#line default
#line hidden
#line 283 "..\..\..\..\MainWindow.xaml"
#line 186 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid TextPreview;
@ -138,7 +130,7 @@ namespace WpfApp2 {
#line hidden
#line 290 "..\..\..\..\MainWindow.xaml"
#line 193 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView InputList;
@ -146,21 +138,13 @@ namespace WpfApp2 {
#line hidden
#line 304 "..\..\..\..\MainWindow.xaml"
#line 207 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView Outpulist;
#line default
#line hidden
#line 320 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox StatusBar;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
@ -207,12 +191,20 @@ namespace WpfApp2 {
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 6:
this. = ((System.Windows.Controls.MenuItem)(target));
#line 39 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Translate_Click);
#line default
#line hidden
return;
case 7:
this. = ((System.Windows.Controls.MenuItem)(target));
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 8:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 9:
#line 56 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.TransSourceSelectWnd_loaded);
@ -220,10 +212,10 @@ namespace WpfApp2 {
#line default
#line hidden
return;
case 9:
case 10:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 10:
case 11:
#line 64 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Hook_trans);
@ -231,7 +223,7 @@ namespace WpfApp2 {
#line default
#line hidden
return;
case 11:
case 12:
#line 65 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.PrograssSelectWnd_loaded);
@ -239,10 +231,10 @@ namespace WpfApp2 {
#line default
#line hidden
return;
case 12:
case 13:
this.Resource = ((System.Windows.Controls.Grid)(target));
return;
case 13:
case 14:
this.ExplorerTreeView = ((System.Windows.Controls.TreeView)(target));
#line 91 "..\..\..\..\MainWindow.xaml"
@ -254,21 +246,6 @@ namespace WpfApp2 {
#line 93 "..\..\..\..\MainWindow.xaml"
this.ExplorerTreeView.Loaded += new System.Windows.RoutedEventHandler(this.TreeView_Loaded);
#line default
#line hidden
return;
case 14:
this.OutputTreeView = ((System.Windows.Controls.TreeView)(target));
#line 189 "..\..\..\..\MainWindow.xaml"
this.OutputTreeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.OutputTreeViewItem_DoubleClick);
#line default
#line hidden
#line 190 "..\..\..\..\MainWindow.xaml"
this.OutputTreeView.Loaded += new System.Windows.RoutedEventHandler(this.OutputTreeView_Loaded);
#line default
#line hidden
return;
@ -278,7 +255,7 @@ namespace WpfApp2 {
case 16:
this.InputList = ((System.Windows.Controls.ListView)(target));
#line 294 "..\..\..\..\MainWindow.xaml"
#line 197 "..\..\..\..\MainWindow.xaml"
this.InputList.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.MainWindow_Loaded));
#line default
@ -287,15 +264,12 @@ namespace WpfApp2 {
case 17:
this.Outpulist = ((System.Windows.Controls.ListView)(target));
#line 308 "..\..\..\..\MainWindow.xaml"
#line 211 "..\..\..\..\MainWindow.xaml"
this.Outpulist.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.MainWindow_Loaded));
#line default
#line hidden
return;
case 18:
this.StatusBar = ((System.Windows.Controls.TextBox)(target));
return;
}
this._contentLoaded = true;
}

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D70B23DF8823E182C044042705ED696087B24E26"
#pragma checksum "..\..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "F8BE49295370120D311FFA42A0331492867B45D9"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -122,15 +122,7 @@ namespace WpfApp2 {
#line hidden
#line 187 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TreeView OutputTreeView;
#line default
#line hidden
#line 283 "..\..\..\..\MainWindow.xaml"
#line 186 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid TextPreview;
@ -138,7 +130,7 @@ namespace WpfApp2 {
#line hidden
#line 290 "..\..\..\..\MainWindow.xaml"
#line 193 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView InputList;
@ -146,21 +138,13 @@ namespace WpfApp2 {
#line hidden
#line 304 "..\..\..\..\MainWindow.xaml"
#line 207 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView Outpulist;
#line default
#line hidden
#line 320 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox StatusBar;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
@ -207,12 +191,20 @@ namespace WpfApp2 {
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 6:
this. = ((System.Windows.Controls.MenuItem)(target));
#line 39 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Translate_Click);
#line default
#line hidden
return;
case 7:
this. = ((System.Windows.Controls.MenuItem)(target));
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 8:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 9:
#line 56 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.TransSourceSelectWnd_loaded);
@ -220,10 +212,10 @@ namespace WpfApp2 {
#line default
#line hidden
return;
case 9:
case 10:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 10:
case 11:
#line 64 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Hook_trans);
@ -231,7 +223,7 @@ namespace WpfApp2 {
#line default
#line hidden
return;
case 11:
case 12:
#line 65 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.PrograssSelectWnd_loaded);
@ -239,10 +231,10 @@ namespace WpfApp2 {
#line default
#line hidden
return;
case 12:
case 13:
this.Resource = ((System.Windows.Controls.Grid)(target));
return;
case 13:
case 14:
this.ExplorerTreeView = ((System.Windows.Controls.TreeView)(target));
#line 91 "..\..\..\..\MainWindow.xaml"
@ -254,21 +246,6 @@ namespace WpfApp2 {
#line 93 "..\..\..\..\MainWindow.xaml"
this.ExplorerTreeView.Loaded += new System.Windows.RoutedEventHandler(this.TreeView_Loaded);
#line default
#line hidden
return;
case 14:
this.OutputTreeView = ((System.Windows.Controls.TreeView)(target));
#line 189 "..\..\..\..\MainWindow.xaml"
this.OutputTreeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.OutputTreeViewItem_DoubleClick);
#line default
#line hidden
#line 190 "..\..\..\..\MainWindow.xaml"
this.OutputTreeView.Loaded += new System.Windows.RoutedEventHandler(this.OutputTreeView_Loaded);
#line default
#line hidden
return;
@ -278,7 +255,7 @@ namespace WpfApp2 {
case 16:
this.InputList = ((System.Windows.Controls.ListView)(target));
#line 294 "..\..\..\..\MainWindow.xaml"
#line 197 "..\..\..\..\MainWindow.xaml"
this.InputList.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.MainWindow_Loaded));
#line default
@ -287,15 +264,12 @@ namespace WpfApp2 {
case 17:
this.Outpulist = ((System.Windows.Controls.ListView)(target));
#line 308 "..\..\..\..\MainWindow.xaml"
#line 211 "..\..\..\..\MainWindow.xaml"
this.Outpulist.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.MainWindow_Loaded));
#line default
#line hidden
return;
case 18:
this.StatusBar = ((System.Windows.Controls.TextBox)(target));
return;
}
this._contentLoaded = true;
}

@ -1 +1 @@
602248e70107beed7fd2332483b33f72270767d5
662317b032ce86e94481a98e65ffda7a4821a0b9

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_0emn3ywv_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_0ixpw3pw_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_13ftrwfr_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_1nviwwxa_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_4oafydtt_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -12,7 +12,7 @@ TRACE;DEBUG;NET;NET6_0;NETCOREAPP
E:\Works\software636\src\WpfApp2\WpfApp2\App.xaml
5-1151231509
251293530945
26-1080831907
1991982895181
MainWindow.xaml;view\ProgressSelect.xaml;view\ScreenshotWindow.xaml;view\TranslationSourceSelect.xaml;view\TranslationText.xaml;

@ -12,9 +12,9 @@ TRACE;DEBUG;NET;NET6_0;NETCOREAPP
E:\Works\software636\src\WpfApp2\WpfApp2\App.xaml
5-1151231509
27-642330275
281278274169
1991982895181
MainWindow.xaml;view\ProgressSelect.xaml;view\ScreenshotWindow.xaml;view\TranslationSourceSelect.xaml;view\TranslationText.xaml;
True
False

@ -1,4 +0,0 @@

FE:\Works\software636\src\WpfApp2\WpfApp2\MainWindow.xaml;;

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_d5keyykq_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_exzwo0dw_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_fbtdsdgj_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_fen0nhj1_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_iapea0vf_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_iutxrhng_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows10.0.19041.0
build_property.TargetPlatformMinVersion = 10.0.19041.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = WpfApp2_krkiog00_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows10.0.19041.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows10.0.19041.0")]
// 由 MSBuild WriteCodeFragment 类生成。

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save