进程列表获取完成,OCR功能完成

CHL
Miyu Kawaii 1 year ago
parent 442b81a34b
commit 9c6de1febb

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -0,0 +1,13 @@
# Default ignored files
/shelf/
/workspace.xml
# Rider ignored files
/modules.xml
/projectSettingsUpdater.xml
/.idea.WpfApp2.iml
/contentModel.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
</project>

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="UserContentModel">
<attachedFolders />
<explicitIncludes />
<explicitExcludes />
</component>
</project>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
</component>
</project>

Binary file not shown.

@ -5,71 +5,156 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApp2"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid ShowGridLines="True">
Title="636software" Height="450" Width="800">
<Grid ShowGridLines="False">
<Grid.RowDefinitions>
<RowDefinition Height="20"></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition Height="20"></RowDefinition>
</Grid.RowDefinitions>
<Menu Width="{Binding ActualWidth, ElementName=window, Mode=OneWay}" Margin="0,0,0,0" Grid.RowSpan="1"/>
<Grid Grid.RowSpan="2">
<Menu
Width="{Binding ActualWidth, ElementName=window, Mode=OneWay}"
Margin="0,0,0,0"
Grid.RowSpan="1"
BorderBrush="Black"
TextBlock.TextAlignment="Center">
<MenuItem
StaysOpenOnClick="True"
Header=" 文件"
Height="20"
Width="50"
Name="文件"
BorderBrush="Gray">
<MenuItem Header="打开" Name="open"/>
<MenuItem Header="保存" Name="save"/>
<MenuItem Header="另存为" Name="saveTo"/>
</MenuItem>
<MenuItem
Header=" 编辑"
Height="20" Width="50"
Name="编辑"
BorderBrush="Gray" HorizontalAlignment="Center" VerticalAlignment="Center">
<MenuItem Header="查找"/>
<MenuItem Header="替换"/>
</MenuItem>
<MenuItem
Header=" 解包"
Height="20"
Width="50"
Name="解包"
BorderBrush="Gray">
<MenuItem Header="开始解包"/>
<MenuItem Header="开始封包"/>
</MenuItem>
<MenuItem
Header=" 设置"
Height="20"
Width="50"
Name="设置"
BorderBrush="Gray">
<MenuItem Header="选择翻译接口" Click="TransSourceSelectWnd_loaded"/>
</MenuItem>
<MenuItem
Header=" 预览"
Height="20"
Width="50"
Name="预览"
BorderBrush="Gray">
<MenuItem Header="开始外挂字幕翻译" Click="PrograssSelectWnd_loaded"/>
</MenuItem>
</Menu>
<Grid Name="Resource" Grid.RowSpan="2">
<Grid.RowDefinitions>
<RowDefinition Height="20"/>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100*"></ColumnDefinition>
<ColumnDefinition Width="350*"></ColumnDefinition>
<ColumnDefinition Width="350*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<TreeView
Grid.ColumnSpan="1"
Background="AliceBlue"
x:Name="ExplorerTreeView"
MouseDoubleClick="TreeViewItem_DoubleClick"
BorderBrush="Transparent"
Loaded="TreeView_Loaded" Grid.Row="1">
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding Children}">
<StackPanel Orientation="Horizontal" >
<TextBlock Text="{Binding Name}" Margin="-5,0,0,0" />
</StackPanel>
</HierarchicalDataTemplate>
</TreeView.ItemTemplate>
</TreeView>
<ListView
<Grid
ShowGridLines="False"
Grid.ColumnSpan="1"
Grid.Row="1">
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<TreeView
Background="AliceBlue"
x:Name="ExplorerTreeView"
MouseDoubleClick="TreeViewItem_DoubleClick"
BorderBrush="Black"
Loaded="TreeView_Loaded"
Grid.Row="0">
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding Children}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}" Margin="-10,0,0,0" Background="AntiqueWhite"/>
</StackPanel>
</HierarchicalDataTemplate>
</TreeView.ItemTemplate>
</TreeView>
<TreeView
Background="AliceBlue"
x:Name="OutputTreeView"
MouseDoubleClick="TreeViewItem_DoubleClick"
BorderBrush="Black"
Loaded="TreeView_Loaded"
Grid.Row="2">
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding Children}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}" Margin="-10,0,0,0" Background="AntiqueWhite"/>
</StackPanel>
</HierarchicalDataTemplate>
</TreeView.ItemTemplate>
</TreeView>
</Grid>
<Grid Name="TextPreview" Grid.Row="1" Grid.ColumnSpan="2" Grid.Column="1">
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<ListView
Width="{Binding Width,ElementName=InputList,Mode=OneWay}"
x:Name="InputList"
Grid.Row="1"
d:ItemsSource="{d:SampleData ItemCount=5}"
Grid.Column="1"
Grid.Column="0"
ScrollViewer.ScrollChanged="MainWindow_Loaded">
<ListView.View>
<GridView>
<GridViewColumn DisplayMemberBinding="{Binding Path=name}" Header="name"/>
<GridViewColumn DisplayMemberBinding="{Binding Path=message}" Header="message" Width="Auto"/>
</GridView>
</ListView.View>
</ListView>
<ListView
<ListView.View>
<GridView>
<GridViewColumn DisplayMemberBinding="{Binding Path=name}" Header="name"/>
<GridViewColumn DisplayMemberBinding="{Binding Path=message}" Header="message" Width="Auto"/>
</GridView>
</ListView.View>
</ListView>
<ListView
Width="{Binding Width, ElementName=Outpulist,Mode=OneWay}"
x:Name="Outpulist"
Grid.Row="1"
d:ItemsSource="{d:SampleData ItemCount=5}"
Grid.Column="2"
ScrollViewer.ScrollChanged="MainWindow_Loaded">
<ListView.View>
<GridView>
<GridViewColumn DisplayMemberBinding="{Binding Path=name}" Header="name"/>
<GridViewColumn DisplayMemberBinding="{Binding Path=message}" Header="message" Width="Auto"/>
</GridView>
</ListView.View>
</ListView>
<ListView.View>
<GridView>
<GridViewColumn DisplayMemberBinding="{Binding Path=name}" Header="name"/>
<GridViewColumn DisplayMemberBinding="{Binding Path=message}" Header="message" Width="Auto"/>
</GridView>
</ListView.View>
</ListView>
</Grid>
</Grid>
<TextBox
Name="StatusBar"
BorderBrush="Black"
Grid.Row="2">
</TextBox>
</Grid>
</Window>

@ -3,18 +3,14 @@ using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using WpfApp2.model;
using WpfApp2.tools;
using WpfApp2.view;
namespace WpfApp2
{
@ -30,9 +26,13 @@ namespace WpfApp2
//鼠标双击事件
private async void TreeViewItem_DoubleClick(Object sender, MouseButtonEventArgs e)
{
string JSONstring1 = File.ReadAllText(FileItem.getJsonPath);
List<Charactor> chara1 = JsonConvert.DeserializeObject<List<Charactor>>(JSONstring1);
/*
TreeView treeView = e.Source as TreeView;
var sourceObject = treeView.SelectedItem as FileItem;
//ExplorerTreeView.ItemsSource = CreateFileList(sourceObject.path);
ExplorerTreeView.ItemsSource = CreateFileList(sourceObject.path);
*/
InputList.ItemsSource = (System.Collections.IEnumerable)chara1;
await Task.Delay(2500);
tempTranslationVoid(chara1);
@ -45,15 +45,7 @@ namespace WpfApp2
ExplorerTreeView.ItemsSource = rootNode;
}
//创建模板类利用listgetset实现文件列表的读取
public class FileItem
{
public string Name { get; set; }
public string path { get; set; }
public bool IsDirectory { get; set; }
public ObservableCollection<FileItem> Children { get; set; }
}
public static ObservableCollection<FileItem> CreateFileList(string path)
{
var directories = Directory.GetDirectories(path);
@ -108,13 +100,20 @@ namespace WpfApp2
void tempTranslationVoid(List<Charactor> charactor)
{
string JSONstring2 = File.ReadAllText(FileItem.jsonPath);
List<Charactor> chara2 = JsonConvert.DeserializeObject<List<Charactor>>(JSONstring2);
Outpulist.ItemsSource = (System.Collections.IEnumerable)chara2;
}
static string JSONstring1 = File.ReadAllText("E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\SourceFile\\inputTestFile.json");
static string JSONstring2 = File.ReadAllText("E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\OutputFile\\testOutput.json");
List<Charactor> chara1 = JsonConvert.DeserializeObject<List<Charactor>>(JSONstring1);
List<Charactor> chara2 = JsonConvert.DeserializeObject<List<Charactor>>(JSONstring2);
private void TransSourceSelectWnd_loaded(object sender, RoutedEventArgs e)
{
var window = new TranslationSourceSelect();
window.ShowDialog();
}
private void PrograssSelectWnd_loaded(object sender, RoutedEventArgs e)
{
var window = new ProgressSelect();
window.ShowDialog();
}
}
}

@ -0,0 +1,211 @@
[
{
"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": "悩んでなかったら、多分喜んで休んでいただろう。"
}
]

@ -9,6 +9,8 @@
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Tesseract" Version="5.2.0" />
<PackageReference Include="Tesseract.Drawing" Version="5.2.0" />
</ItemGroup>
<ItemGroup>
@ -16,4 +18,36 @@
<Folder Include="SourceFile\" />
</ItemGroup>
<ItemGroup>
<None Remove="C:\Users\82590\.nuget\packages\tesseract\5.2.0\build\\..\x64\leptonica-1.82.0.dll" />
</ItemGroup>
<ItemGroup>
<None Remove="C:\Users\82590\.nuget\packages\tesseract\5.2.0\build\\..\x64\tesseract50.dll" />
</ItemGroup>
<ItemGroup>
<None Remove="C:\Users\82590\.nuget\packages\tesseract\5.2.0\build\\..\x86\leptonica-1.82.0.dll" />
</ItemGroup>
<ItemGroup>
<None Remove="C:\Users\82590\.nuget\packages\tesseract\5.2.0\build\\..\x86\tesseract50.dll" />
</ItemGroup>
<ItemGroup>
<None Remove="C:\Users\82590\.nuget\packages\tesseract\5.2.0\build\\..\x86\leptonica-1.82.0.dll" />
</ItemGroup>
<ItemGroup>
<None Remove="C:\Users\82590\.nuget\packages\tesseract\5.2.0\build\\..\x86\tesseract50.dll" />
</ItemGroup>
<ItemGroup>
<None Remove="C:\Users\82590\.nuget\packages\tesseract\5.2.0\build\\..\x64\leptonica-1.82.0.dll" />
</ItemGroup>
<ItemGroup>
<None Remove="C:\Users\82590\.nuget\packages\tesseract\5.2.0\build\\..\x64\tesseract50.dll" />
</ItemGroup>
</Project>

@ -1,6 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<ItemGroup />
<ItemGroup />
<ItemGroup>
<Compile Update="view\ProgressSelect.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="view\TranslationSourceSelect.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Page Update="view\ProgressSelect.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="view\TranslationSourceSelect.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>
</Project>

@ -8,12 +8,15 @@
".NETCoreApp,Version=v6.0": {
"WpfApp2/1.0.0": {
"dependencies": {
"Newtonsoft.Json": "13.0.3"
"Newtonsoft.Json": "13.0.3",
"Tesseract": "5.2.0",
"Tesseract.Drawing": "5.2.0"
},
"runtime": {
"WpfApp2.dll": {}
}
},
"Microsoft.Win32.SystemEvents/6.0.0": {},
"Newtonsoft.Json/13.0.3": {
"runtime": {
"lib/net6.0/Newtonsoft.Json.dll": {
@ -21,6 +24,35 @@
"fileVersion": "13.0.3.27908"
}
}
},
"System.Drawing.Common/6.0.0": {
"dependencies": {
"Microsoft.Win32.SystemEvents": "6.0.0"
}
},
"System.Reflection.Emit/4.7.0": {},
"Tesseract/5.2.0": {
"dependencies": {
"System.Reflection.Emit": "4.7.0"
},
"runtime": {
"lib/netstandard2.0/Tesseract.dll": {
"assemblyVersion": "5.2.0.0",
"fileVersion": "5.2.0.0"
}
}
},
"Tesseract.Drawing/5.2.0": {
"dependencies": {
"System.Drawing.Common": "6.0.0",
"Tesseract": "5.2.0"
},
"runtime": {
"lib/netstandard2.0/Tesseract.Drawing.dll": {
"assemblyVersion": "5.2.0.0",
"fileVersion": "5.2.0.0"
}
}
}
}
},
@ -30,12 +62,47 @@
"serviceable": false,
"sha512": ""
},
"Microsoft.Win32.SystemEvents/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
"path": "microsoft.win32.systemevents/6.0.0",
"hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
},
"Newtonsoft.Json/13.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
"path": "newtonsoft.json/13.0.3",
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
},
"System.Drawing.Common/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
"path": "system.drawing.common/6.0.0",
"hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
},
"System.Reflection.Emit/4.7.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
"path": "system.reflection.emit/4.7.0",
"hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
},
"Tesseract/5.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YB7feJlrTWSXtK8+WaCcseGSPK/1r2d2FWeKGyndlrPwYClrzTlCoHD4/oQEUjKafmpkWlhTZZ7pxiRJYZgj6w==",
"path": "tesseract/5.2.0",
"hashPath": "tesseract.5.2.0.nupkg.sha512"
},
"Tesseract.Drawing/5.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ORuub0AagnAGPjdhO8qNxI6Z+2dXUmqWFy6qSjQ+Wr56SxQiV2jNvGM9Tpluvd7F5vwJeqXEWQnzFvGL6iHfjA==",
"path": "tesseract.drawing/5.2.0",
"hashPath": "tesseract.drawing.5.2.0.nupkg.sha512"
}
}
}

@ -0,0 +1,14 @@
using System.Collections.ObjectModel;
namespace WpfApp2.model
{
public class FileItem
{
public string Name { get; set; }
public string path { get; set; }
public bool IsDirectory { get; set; }
public ObservableCollection<FileItem> Children { get; set; }
public static string jsonPath = "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\OutputFile\\testOutput.json";
public static string getJsonPath = "E:\\Works\\software636\\src\\WpfApp2\\WpfApp2\\SourceFile\\inputTestFile.json";
}
}

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A86D00497070BAAA60FF5C1116C164CBDAD60D91"
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B0ABDE2DED1810AAD950E21D8277B7E84F5FDB18"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -42,7 +42,79 @@ namespace WpfApp2 {
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 31 "..\..\..\MainWindow.xaml"
#line 26 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
#line default
#line hidden
#line 28 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem open;
#line default
#line hidden
#line 29 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem save;
#line default
#line hidden
#line 30 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem saveTo;
#line default
#line hidden
#line 35 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
#line default
#line hidden
#line 44 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
#line default
#line hidden
#line 53 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
#line default
#line hidden
#line 61 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
#line default
#line hidden
#line 67 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid Resource;
#line default
#line hidden
#line 87 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TreeView ExplorerTreeView;
@ -50,7 +122,23 @@ namespace WpfApp2 {
#line hidden
#line 46 "..\..\..\MainWindow.xaml"
#line 102 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TreeView OutputTreeView;
#line default
#line hidden
#line 116 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid TextPreview;
#line default
#line hidden
#line 124 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView InputList;
@ -58,13 +146,21 @@ namespace WpfApp2 {
#line hidden
#line 61 "..\..\..\MainWindow.xaml"
#line 138 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView Outpulist;
#line default
#line hidden
#line 154 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox StatusBar;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
@ -96,38 +192,102 @@ namespace WpfApp2 {
switch (connectionId)
{
case 1:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 2:
this.open = ((System.Windows.Controls.MenuItem)(target));
return;
case 3:
this.save = ((System.Windows.Controls.MenuItem)(target));
return;
case 4:
this.saveTo = ((System.Windows.Controls.MenuItem)(target));
return;
case 5:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 6:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 7:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 8:
#line 55 "..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.TransSourceSelectWnd_loaded);
#line default
#line hidden
return;
case 9:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 10:
#line 63 "..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.PrograssSelectWnd_loaded);
#line default
#line hidden
return;
case 11:
this.Resource = ((System.Windows.Controls.Grid)(target));
return;
case 12:
this.ExplorerTreeView = ((System.Windows.Controls.TreeView)(target));
#line 32 "..\..\..\MainWindow.xaml"
#line 88 "..\..\..\MainWindow.xaml"
this.ExplorerTreeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.TreeViewItem_DoubleClick);
#line default
#line hidden
#line 34 "..\..\..\MainWindow.xaml"
#line 90 "..\..\..\MainWindow.xaml"
this.ExplorerTreeView.Loaded += new System.Windows.RoutedEventHandler(this.TreeView_Loaded);
#line default
#line hidden
return;
case 2:
case 13:
this.OutputTreeView = ((System.Windows.Controls.TreeView)(target));
#line 103 "..\..\..\MainWindow.xaml"
this.OutputTreeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.TreeViewItem_DoubleClick);
#line default
#line hidden
#line 105 "..\..\..\MainWindow.xaml"
this.OutputTreeView.Loaded += new System.Windows.RoutedEventHandler(this.TreeView_Loaded);
#line default
#line hidden
return;
case 14:
this.TextPreview = ((System.Windows.Controls.Grid)(target));
return;
case 15:
this.InputList = ((System.Windows.Controls.ListView)(target));
#line 50 "..\..\..\MainWindow.xaml"
#line 128 "..\..\..\MainWindow.xaml"
this.InputList.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.MainWindow_Loaded));
#line default
#line hidden
return;
case 3:
case 16:
this.Outpulist = ((System.Windows.Controls.ListView)(target));
#line 65 "..\..\..\MainWindow.xaml"
#line 142 "..\..\..\MainWindow.xaml"
this.Outpulist.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.MainWindow_Loaded));
#line default
#line hidden
return;
case 17:
this.StatusBar = ((System.Windows.Controls.TextBox)(target));
return;
}
this._contentLoaded = true;
}

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A86D00497070BAAA60FF5C1116C164CBDAD60D91"
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B0ABDE2DED1810AAD950E21D8277B7E84F5FDB18"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -42,7 +42,79 @@ namespace WpfApp2 {
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 31 "..\..\..\MainWindow.xaml"
#line 26 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
#line default
#line hidden
#line 28 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem open;
#line default
#line hidden
#line 29 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem save;
#line default
#line hidden
#line 30 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem saveTo;
#line default
#line hidden
#line 35 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
#line default
#line hidden
#line 44 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
#line default
#line hidden
#line 53 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
#line default
#line hidden
#line 61 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
#line default
#line hidden
#line 67 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid Resource;
#line default
#line hidden
#line 87 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TreeView ExplorerTreeView;
@ -50,7 +122,23 @@ namespace WpfApp2 {
#line hidden
#line 46 "..\..\..\MainWindow.xaml"
#line 102 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TreeView OutputTreeView;
#line default
#line hidden
#line 116 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid TextPreview;
#line default
#line hidden
#line 124 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView InputList;
@ -58,13 +146,21 @@ namespace WpfApp2 {
#line hidden
#line 61 "..\..\..\MainWindow.xaml"
#line 138 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView Outpulist;
#line default
#line hidden
#line 154 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox StatusBar;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
@ -96,38 +192,102 @@ namespace WpfApp2 {
switch (connectionId)
{
case 1:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 2:
this.open = ((System.Windows.Controls.MenuItem)(target));
return;
case 3:
this.save = ((System.Windows.Controls.MenuItem)(target));
return;
case 4:
this.saveTo = ((System.Windows.Controls.MenuItem)(target));
return;
case 5:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 6:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 7:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 8:
#line 55 "..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.TransSourceSelectWnd_loaded);
#line default
#line hidden
return;
case 9:
this. = ((System.Windows.Controls.MenuItem)(target));
return;
case 10:
#line 63 "..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.PrograssSelectWnd_loaded);
#line default
#line hidden
return;
case 11:
this.Resource = ((System.Windows.Controls.Grid)(target));
return;
case 12:
this.ExplorerTreeView = ((System.Windows.Controls.TreeView)(target));
#line 32 "..\..\..\MainWindow.xaml"
#line 88 "..\..\..\MainWindow.xaml"
this.ExplorerTreeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.TreeViewItem_DoubleClick);
#line default
#line hidden
#line 34 "..\..\..\MainWindow.xaml"
#line 90 "..\..\..\MainWindow.xaml"
this.ExplorerTreeView.Loaded += new System.Windows.RoutedEventHandler(this.TreeView_Loaded);
#line default
#line hidden
return;
case 2:
case 13:
this.OutputTreeView = ((System.Windows.Controls.TreeView)(target));
#line 103 "..\..\..\MainWindow.xaml"
this.OutputTreeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.TreeViewItem_DoubleClick);
#line default
#line hidden
#line 105 "..\..\..\MainWindow.xaml"
this.OutputTreeView.Loaded += new System.Windows.RoutedEventHandler(this.TreeView_Loaded);
#line default
#line hidden
return;
case 14:
this.TextPreview = ((System.Windows.Controls.Grid)(target));
return;
case 15:
this.InputList = ((System.Windows.Controls.ListView)(target));
#line 50 "..\..\..\MainWindow.xaml"
#line 128 "..\..\..\MainWindow.xaml"
this.InputList.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.MainWindow_Loaded));
#line default
#line hidden
return;
case 3:
case 16:
this.Outpulist = ((System.Windows.Controls.ListView)(target));
#line 65 "..\..\..\MainWindow.xaml"
#line 142 "..\..\..\MainWindow.xaml"
this.Outpulist.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.MainWindow_Loaded));
#line default
#line hidden
return;
case 17:
this.StatusBar = ((System.Windows.Controls.TextBox)(target));
return;
}
this._contentLoaded = true;
}

@ -1 +1 @@
150efa44d342d03f2dbc5c78fbf307a867454e2f
664b94c79b729d8d1977bee97b90d053276ad825

@ -21,3 +21,13 @@ E:\Works\software636\src\WpfApp2\WpfApp2\obj\Debug\net6.0-windows\WpfApp2.genrun
E:\Works\software636\src\WpfApp2\WpfApp2\obj\Debug\net6.0-windows\ref\WpfApp2.dll
E:\Works\software636\src\WpfApp2\WpfApp2\obj\Debug\net6.0-windows\MainWindow.g.cs
E:\Works\software636\src\WpfApp2\WpfApp2\obj\Debug\net6.0-windows\MainWindow.baml
E:\Works\software636\src\WpfApp2\WpfApp2\obj\Debug\net6.0-windows\view\TranslationSourceSelect.g.cs
E:\Works\software636\src\WpfApp2\WpfApp2\obj\Debug\net6.0-windows\view\TranslationSourceSelect.baml
E:\Works\software636\src\WpfApp2\WpfApp2\bin\Debug\net6.0-windows\x86\leptonica-1.82.0.dll
E:\Works\software636\src\WpfApp2\WpfApp2\bin\Debug\net6.0-windows\x86\tesseract50.dll
E:\Works\software636\src\WpfApp2\WpfApp2\bin\Debug\net6.0-windows\x64\leptonica-1.82.0.dll
E:\Works\software636\src\WpfApp2\WpfApp2\bin\Debug\net6.0-windows\x64\tesseract50.dll
E:\Works\software636\src\WpfApp2\WpfApp2\bin\Debug\net6.0-windows\Tesseract.dll
E:\Works\software636\src\WpfApp2\WpfApp2\bin\Debug\net6.0-windows\Tesseract.Drawing.dll
E:\Works\software636\src\WpfApp2\WpfApp2\obj\Debug\net6.0-windows\view\ProgressSelect.g.cs
E:\Works\software636\src\WpfApp2\WpfApp2\obj\Debug\net6.0-windows\view\ProgressSelect.baml

@ -6,6 +6,22 @@
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Microsoft.Win32.SystemEvents/6.0.0": {
"runtime": {
"lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.52210"
}
},
"runtimeTargets": {
"runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.52210"
}
}
},
"Newtonsoft.Json/13.0.3": {
"runtime": {
"lib/net6.0/Newtonsoft.Json.dll": {
@ -13,16 +29,100 @@
"fileVersion": "13.0.3.27908"
}
}
},
"System.Drawing.Common/6.0.0": {
"dependencies": {
"Microsoft.Win32.SystemEvents": "6.0.0"
},
"runtime": {
"lib/net6.0/System.Drawing.Common.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.52210"
}
},
"runtimeTargets": {
"runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
"rid": "unix",
"assetType": "runtime",
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.52210"
},
"runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.21.52210"
}
}
},
"System.Reflection.Emit/4.7.0": {},
"Tesseract/5.2.0": {
"dependencies": {
"System.Reflection.Emit": "4.7.0"
},
"runtime": {
"lib/netstandard2.0/Tesseract.dll": {
"assemblyVersion": "5.2.0.0",
"fileVersion": "5.2.0.0"
}
}
},
"Tesseract.Drawing/5.2.0": {
"dependencies": {
"System.Drawing.Common": "6.0.0",
"Tesseract": "5.2.0"
},
"runtime": {
"lib/netstandard2.0/Tesseract.Drawing.dll": {
"assemblyVersion": "5.2.0.0",
"fileVersion": "5.2.0.0"
}
}
}
}
},
"libraries": {
"Microsoft.Win32.SystemEvents/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
"path": "microsoft.win32.systemevents/6.0.0",
"hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
},
"Newtonsoft.Json/13.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
"path": "newtonsoft.json/13.0.3",
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
},
"System.Drawing.Common/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
"path": "system.drawing.common/6.0.0",
"hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
},
"System.Reflection.Emit/4.7.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
"path": "system.reflection.emit/4.7.0",
"hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
},
"Tesseract/5.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YB7feJlrTWSXtK8+WaCcseGSPK/1r2d2FWeKGyndlrPwYClrzTlCoHD4/oQEUjKafmpkWlhTZZ7pxiRJYZgj6w==",
"path": "tesseract/5.2.0",
"hashPath": "tesseract.5.2.0.nupkg.sha512"
},
"Tesseract.Drawing/5.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ORuub0AagnAGPjdhO8qNxI6Z+2dXUmqWFy6qSjQ+Wr56SxQiV2jNvGM9Tpluvd7F5vwJeqXEWQnzFvGL6iHfjA==",
"path": "tesseract.drawing/5.2.0",
"hashPath": "tesseract.drawing.5.2.0.nupkg.sha512"
}
}
}

@ -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("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.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_03phwfaz_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("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.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_0g503sea_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -0,0 +1,24 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </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("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.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_0ystcocx_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("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.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_10f0lhdh_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("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.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_14xpy2h2_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("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.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_2cw5an5b_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("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.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_3dfw2qwk_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("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.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_3epwr0ot_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("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.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_3tqnxdot_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("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.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_3y3ao05o_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("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.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_5tt24rle_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("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

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

Loading…
Cancel
Save