完善OCR功能,完善数据绑定,项目已可基本运行;

CHL
Miyu Kawaii 1 year ago
parent d6eb79fee0
commit 9c260a0b66

Binary file not shown.

@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using System.Windows;
namespace WpfApp2
{

@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApp2"
mc:Ignorable="d"
Title="636software" Height="450" Width="800">
Title="636software" Height="960" Width="1440">
<Grid ShowGridLines="False">
<Grid.RowDefinitions>
<RowDefinition Height="20"></RowDefinition>
@ -36,6 +36,7 @@
BorderBrush="Gray" HorizontalAlignment="Center" VerticalAlignment="Center">
<MenuItem Header="查找"/>
<MenuItem Header="替换"/>
<MenuItem Header="翻译加载的文件"/>
</MenuItem>
<MenuItem
Header=" 解包"
@ -60,6 +61,7 @@
Width="50"
Name="预览"
BorderBrush="Gray">
<MenuItem Header="开始加载字幕翻译" Click="Hook_trans"/>
<MenuItem Header="开始外挂字幕翻译" Click="PrograssSelectWnd_loaded"/>
</MenuItem>
</Menu>
@ -70,9 +72,9 @@
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100*"></ColumnDefinition>
<ColumnDefinition Width="350*"></ColumnDefinition>
<ColumnDefinition Width="350*"></ColumnDefinition>
<ColumnDefinition Width="25*"></ColumnDefinition>
<ColumnDefinition Width="62*"></ColumnDefinition>
<ColumnDefinition Width="57*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid
ShowGridLines="False"
@ -82,6 +84,7 @@
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<TreeView
Background="AliceBlue"
x:Name="ExplorerTreeView"
@ -90,35 +93,198 @@
Loaded="TreeView_Loaded"
Grid.Row="0">
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding Children}">
<HierarchicalDataTemplate x:Name="CurrentPath" ItemsSource="{Binding Children}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}" Margin="-10,0,0,0" Background="AntiqueWhite"/>
<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>
<TreeView
Background="AliceBlue"
x:Name="OutputTreeView"
MouseDoubleClick="TreeViewItem_DoubleClick"
BorderBrush="Black"
Loaded="TreeView_Loaded"
Grid.Row="2">
MouseDoubleClick="OutputTreeViewItem_DoubleClick"
Loaded="OutputTreeView_Loaded"
Grid.Row="1">
<TreeView.ItemTemplate>
<HierarchicalDataTemplate ItemsSource="{Binding Children}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}" Margin="-10,0,0,0" Background="AntiqueWhite"/>
<TextBlock Text="{Binding Name}" Margin="0,0,0,0"/>
</StackPanel>
</HierarchicalDataTemplate>
</TreeView.ItemTemplate>
</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">
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<ListView
Width="{Binding Width,ElementName=InputList,Mode=OneWay}"
x:Name="InputList"
@ -147,14 +313,14 @@
</GridView>
</ListView.View>
</ListView>
</Grid>
</Grid>
</Grid>
<TextBox
Name="StatusBar"
BorderBrush="Black"
Grid.Row="2">
</TextBox>
</Grid>
</Window>

@ -9,7 +9,6 @@ using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using WpfApp2.model;
using WpfApp2.tools;
using WpfApp2.view;
namespace WpfApp2
@ -22,35 +21,73 @@ namespace WpfApp2
public MainWindow()
{
InitializeComponent();
}
//鼠标双击事件
private async void TreeViewItem_DoubleClick(Object sender, MouseButtonEventArgs e)
private void TreeViewItem_DoubleClick(Object sender, MouseButtonEventArgs e)
{
/*
TreeViewItem item = sender as TreeViewItem;
if (item != null)
{
if (item.DataContext is FileItem)
{
FileItem file = item.DataContext as FileItem;
string JSONstring = File.ReadAllText(file.path);
List<Charactor> chara1 = JsonConvert.DeserializeObject<List<Charactor>>(JSONstring);
InputList.ItemsSource = (System.Collections.IEnumerable)chara1;
}
else
{
TreeView treeView = e.Source as TreeView;
var sourceObject = treeView.SelectedItem as FileItem;
ExplorerTreeView.ItemsSource = CreateFileList(sourceObject.path);
}
}
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);
*/
InputList.ItemsSource = (System.Collections.IEnumerable)chara1;
await Task.Delay(2500);
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();
var path = @"E:\Works\software636\src\WpfApp2\WpfApp2\SourceFile";
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)
{
var directories = Directory.GetDirectories(path);
var fileItemList = new ObservableCollection<FileItem>();
var files = Directory.GetFiles(path);
FileItem parentItem = new FileItem()
{
Name = "..",
path = Directory.GetParent(path).FullName,
IsDirectory = true,
Children = new ObservableCollection<FileItem>()
};
fileItemList.Add(parentItem);
foreach (var item in directories)
{
FileItem fileItem = new FileItem()
@ -67,7 +104,7 @@ namespace WpfApp2
{
FileItem fileItem = new FileItem()
{
Name = System.IO.Path.GetFileName(item),
Name = System.IO.Path.GetFileName(item) + System.IO.Path.GetExtension(item),
path = item,
IsDirectory = true,
};
@ -114,7 +151,12 @@ namespace WpfApp2
{
var window = new TranslationText();
window.Show();
}
private void Hook_trans(object sender, RoutedEventArgs e)
{
var window = new ProgressSelect();
window.Show();
}
}
}

@ -16,7 +16,7 @@
如果你的应用程序需要此虚拟化来实现向后兼容性,则移除此
元素。
-->
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>

@ -1,16 +1,6 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace WpfApp2
namespace WpfApp2
{
public class Charactor
public class Charactor
{
public string name { get; set; }
public string message { get; set; }

@ -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>

@ -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}" "B0ABDE2DED1810AAD950E21D8277B7E84F5FDB18"
#pragma checksum "..\..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D70B23DF8823E182C044042705ED696087B24E26"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -82,7 +82,7 @@ namespace WpfApp2 {
#line hidden
#line 44 "..\..\..\..\MainWindow.xaml"
#line 45 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
@ -90,7 +90,7 @@ namespace WpfApp2 {
#line hidden
#line 53 "..\..\..\..\MainWindow.xaml"
#line 54 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
@ -98,7 +98,7 @@ namespace WpfApp2 {
#line hidden
#line 61 "..\..\..\..\MainWindow.xaml"
#line 62 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
@ -106,7 +106,7 @@ namespace WpfApp2 {
#line hidden
#line 67 "..\..\..\..\MainWindow.xaml"
#line 69 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid Resource;
@ -114,7 +114,7 @@ namespace WpfApp2 {
#line hidden
#line 87 "..\..\..\..\MainWindow.xaml"
#line 90 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TreeView ExplorerTreeView;
@ -122,7 +122,7 @@ namespace WpfApp2 {
#line hidden
#line 102 "..\..\..\..\MainWindow.xaml"
#line 187 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TreeView OutputTreeView;
@ -130,7 +130,7 @@ namespace WpfApp2 {
#line hidden
#line 116 "..\..\..\..\MainWindow.xaml"
#line 283 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid TextPreview;
@ -138,7 +138,7 @@ namespace WpfApp2 {
#line hidden
#line 124 "..\..\..\..\MainWindow.xaml"
#line 290 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView InputList;
@ -146,7 +146,7 @@ namespace WpfApp2 {
#line hidden
#line 138 "..\..\..\..\MainWindow.xaml"
#line 304 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView Outpulist;
@ -154,7 +154,7 @@ namespace WpfApp2 {
#line hidden
#line 154 "..\..\..\..\MainWindow.xaml"
#line 320 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox StatusBar;
@ -214,7 +214,7 @@ namespace WpfApp2 {
return;
case 8:
#line 55 "..\..\..\..\MainWindow.xaml"
#line 56 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.TransSourceSelectWnd_loaded);
#line default
@ -225,67 +225,75 @@ namespace WpfApp2 {
return;
case 10:
#line 63 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.PrograssSelectWnd_loaded);
#line 64 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Hook_trans);
#line default
#line hidden
return;
case 11:
this.Resource = ((System.Windows.Controls.Grid)(target));
#line 65 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.PrograssSelectWnd_loaded);
#line default
#line hidden
return;
case 12:
this.Resource = ((System.Windows.Controls.Grid)(target));
return;
case 13:
this.ExplorerTreeView = ((System.Windows.Controls.TreeView)(target));
#line 88 "..\..\..\..\MainWindow.xaml"
#line 91 "..\..\..\..\MainWindow.xaml"
this.ExplorerTreeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.TreeViewItem_DoubleClick);
#line default
#line hidden
#line 90 "..\..\..\..\MainWindow.xaml"
#line 93 "..\..\..\..\MainWindow.xaml"
this.ExplorerTreeView.Loaded += new System.Windows.RoutedEventHandler(this.TreeView_Loaded);
#line default
#line hidden
return;
case 13:
case 14:
this.OutputTreeView = ((System.Windows.Controls.TreeView)(target));
#line 103 "..\..\..\..\MainWindow.xaml"
this.OutputTreeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.TreeViewItem_DoubleClick);
#line 189 "..\..\..\..\MainWindow.xaml"
this.OutputTreeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.OutputTreeViewItem_DoubleClick);
#line default
#line hidden
#line 105 "..\..\..\..\MainWindow.xaml"
this.OutputTreeView.Loaded += new System.Windows.RoutedEventHandler(this.TreeView_Loaded);
#line 190 "..\..\..\..\MainWindow.xaml"
this.OutputTreeView.Loaded += new System.Windows.RoutedEventHandler(this.OutputTreeView_Loaded);
#line default
#line hidden
return;
case 14:
case 15:
this.TextPreview = ((System.Windows.Controls.Grid)(target));
return;
case 15:
case 16:
this.InputList = ((System.Windows.Controls.ListView)(target));
#line 128 "..\..\..\..\MainWindow.xaml"
#line 294 "..\..\..\..\MainWindow.xaml"
this.InputList.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.MainWindow_Loaded));
#line default
#line hidden
return;
case 16:
case 17:
this.Outpulist = ((System.Windows.Controls.ListView)(target));
#line 142 "..\..\..\..\MainWindow.xaml"
#line 308 "..\..\..\..\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:
case 18:
this.StatusBar = ((System.Windows.Controls.TextBox)(target));
return;
}

@ -1,4 +1,4 @@
#pragma checksum "..\..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B0ABDE2DED1810AAD950E21D8277B7E84F5FDB18"
#pragma checksum "..\..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D70B23DF8823E182C044042705ED696087B24E26"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
@ -82,7 +82,7 @@ namespace WpfApp2 {
#line hidden
#line 44 "..\..\..\..\MainWindow.xaml"
#line 45 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
@ -90,7 +90,7 @@ namespace WpfApp2 {
#line hidden
#line 53 "..\..\..\..\MainWindow.xaml"
#line 54 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
@ -98,7 +98,7 @@ namespace WpfApp2 {
#line hidden
#line 61 "..\..\..\..\MainWindow.xaml"
#line 62 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.MenuItem ;
@ -106,7 +106,7 @@ namespace WpfApp2 {
#line hidden
#line 67 "..\..\..\..\MainWindow.xaml"
#line 69 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid Resource;
@ -114,7 +114,7 @@ namespace WpfApp2 {
#line hidden
#line 87 "..\..\..\..\MainWindow.xaml"
#line 90 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TreeView ExplorerTreeView;
@ -122,7 +122,7 @@ namespace WpfApp2 {
#line hidden
#line 102 "..\..\..\..\MainWindow.xaml"
#line 187 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TreeView OutputTreeView;
@ -130,7 +130,7 @@ namespace WpfApp2 {
#line hidden
#line 116 "..\..\..\..\MainWindow.xaml"
#line 283 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Grid TextPreview;
@ -138,7 +138,7 @@ namespace WpfApp2 {
#line hidden
#line 124 "..\..\..\..\MainWindow.xaml"
#line 290 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView InputList;
@ -146,7 +146,7 @@ namespace WpfApp2 {
#line hidden
#line 138 "..\..\..\..\MainWindow.xaml"
#line 304 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ListView Outpulist;
@ -154,7 +154,7 @@ namespace WpfApp2 {
#line hidden
#line 154 "..\..\..\..\MainWindow.xaml"
#line 320 "..\..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox StatusBar;
@ -173,7 +173,7 @@ namespace WpfApp2 {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/WpfApp2;component/mainwindow.xaml", System.UriKind.Relative);
System.Uri resourceLocater = new System.Uri("/WpfApp2;V1.0.0.0;component/mainwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@ -214,7 +214,7 @@ namespace WpfApp2 {
return;
case 8:
#line 55 "..\..\..\..\MainWindow.xaml"
#line 56 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.TransSourceSelectWnd_loaded);
#line default
@ -225,67 +225,75 @@ namespace WpfApp2 {
return;
case 10:
#line 63 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.PrograssSelectWnd_loaded);
#line 64 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Hook_trans);
#line default
#line hidden
return;
case 11:
this.Resource = ((System.Windows.Controls.Grid)(target));
#line 65 "..\..\..\..\MainWindow.xaml"
((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.PrograssSelectWnd_loaded);
#line default
#line hidden
return;
case 12:
this.Resource = ((System.Windows.Controls.Grid)(target));
return;
case 13:
this.ExplorerTreeView = ((System.Windows.Controls.TreeView)(target));
#line 88 "..\..\..\..\MainWindow.xaml"
#line 91 "..\..\..\..\MainWindow.xaml"
this.ExplorerTreeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.TreeViewItem_DoubleClick);
#line default
#line hidden
#line 90 "..\..\..\..\MainWindow.xaml"
#line 93 "..\..\..\..\MainWindow.xaml"
this.ExplorerTreeView.Loaded += new System.Windows.RoutedEventHandler(this.TreeView_Loaded);
#line default
#line hidden
return;
case 13:
case 14:
this.OutputTreeView = ((System.Windows.Controls.TreeView)(target));
#line 103 "..\..\..\..\MainWindow.xaml"
this.OutputTreeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.TreeViewItem_DoubleClick);
#line 189 "..\..\..\..\MainWindow.xaml"
this.OutputTreeView.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.OutputTreeViewItem_DoubleClick);
#line default
#line hidden
#line 105 "..\..\..\..\MainWindow.xaml"
this.OutputTreeView.Loaded += new System.Windows.RoutedEventHandler(this.TreeView_Loaded);
#line 190 "..\..\..\..\MainWindow.xaml"
this.OutputTreeView.Loaded += new System.Windows.RoutedEventHandler(this.OutputTreeView_Loaded);
#line default
#line hidden
return;
case 14:
case 15:
this.TextPreview = ((System.Windows.Controls.Grid)(target));
return;
case 15:
case 16:
this.InputList = ((System.Windows.Controls.ListView)(target));
#line 128 "..\..\..\..\MainWindow.xaml"
#line 294 "..\..\..\..\MainWindow.xaml"
this.InputList.AddHandler(System.Windows.Controls.ScrollViewer.ScrollChangedEvent, new System.Windows.Controls.ScrollChangedEventHandler(this.MainWindow_Loaded));
#line default
#line hidden
return;
case 16:
case 17:
this.Outpulist = ((System.Windows.Controls.ListView)(target));
#line 142 "..\..\..\..\MainWindow.xaml"
#line 308 "..\..\..\..\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:
case 18:
this.StatusBar = ((System.Windows.Controls.TextBox)(target));
return;
}

@ -1 +1 @@
e2159ea0be394e4983796813ddf10f46d53b80d2
602248e70107beed7fd2332483b33f72270767d5

@ -35,3 +35,5 @@ E:\Works\software636\src\WpfApp2\WpfApp2\obj\x64\Debug\net6.0-windows10.0.19041.
E:\Works\software636\src\WpfApp2\WpfApp2\obj\x64\Debug\net6.0-windows10.0.19041.0\view\ScreenshotWindow.g.cs
E:\Works\software636\src\WpfApp2\WpfApp2\obj\x64\Debug\net6.0-windows10.0.19041.0\view\ScreenshotWindow.baml
E:\Works\software636\src\WpfApp2\WpfApp2\bin\x64\Debug\net6.0-windows10.0.19041.0\CommunityToolkit.Mvvm.dll
E:\Works\software636\src\WpfApp2\WpfApp2\obj\x64\Debug\net6.0-windows10.0.19041.0\view\ProgressSelect.g.cs
E:\Works\software636\src\WpfApp2\WpfApp2\obj\x64\Debug\net6.0-windows10.0.19041.0\view\ProgressSelect.baml

@ -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_0ovpuf2g_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_115jur5f_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_1dkmx5je_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_23zatlkr_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_25xcl4yf_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_2iluc3vj_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_2wy3jlug_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_31jel5xx_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_3kw0xstc_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_4hkbwzut_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_5oe1itzk_wpftmp
build_property.ProjectDir = E:\Works\software636\src\WpfApp2\WpfApp2\

@ -10,11 +10,11 @@ none
false
TRACE;DEBUG;NET;NET6_0;NETCOREAPP
E:\Works\software636\src\WpfApp2\WpfApp2\App.xaml
42090834608
5-1151231509
23556960420
251293530945
1991982895181
MainWindow.xaml;view\ScreenshotWindow.xaml;view\TranslationSourceSelect.xaml;view\TranslationText.xaml;
MainWindow.xaml;view\ProgressSelect.xaml;view\ScreenshotWindow.xaml;view\TranslationSourceSelect.xaml;view\TranslationText.xaml;
False

@ -10,11 +10,11 @@ none
false
TRACE;DEBUG;NET;NET6_0;NETCOREAPP
E:\Works\software636\src\WpfApp2\WpfApp2\App.xaml
42090834608
5-1151231509
25-1378900800
27-642330275
1991982895181
MainWindow.xaml;view\ScreenshotWindow.xaml;view\TranslationSourceSelect.xaml;view\TranslationText.xaml;
MainWindow.xaml;view\ProgressSelect.xaml;view\ScreenshotWindow.xaml;view\TranslationSourceSelect.xaml;view\TranslationText.xaml;
True

@ -1,4 +1,4 @@

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

@ -4,4 +4,5 @@ FE:\Works\software636\src\WpfApp2\WpfApp2\MainWindow.xaml;;
FE:\Works\software636\src\WpfApp2\WpfApp2\view\ScreenshotWindow.xaml;;
FE:\Works\software636\src\WpfApp2\WpfApp2\view\TranslationSourceSelect.xaml;;
FE:\Works\software636\src\WpfApp2\WpfApp2\view\TranslationText.xaml;;
FE:\Works\software636\src\WpfApp2\WpfApp2\view\ProgressSelect.xaml;;

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

Loading…
Cancel
Save