Преглед на файлове

ComPDFKit(win) - 将中文代码注释翻译为英文

TangJinZhou преди 9 месеца
родител
ревизия
ffcef4016f
променени са 18 файла, в които са добавени 24 реда и са изтрити 242 реда
  1. 1 1
      Demo/Examples/Compdfkit.Controls/Annotation/PDFAnnotationData/CPDFAnnotationData.cs
  2. 1 2
      Demo/Examples/Compdfkit.Controls/Common/PasswordControl/PasswordBoxControl.xaml.cs
  3. 0 3
      Demo/Examples/Compdfkit.Controls/Measure/Property/MultilineProperty.xaml.cs
  4. 0 3
      Demo/Examples/Compdfkit.Controls/Measure/Property/PolygonalProperty.xaml.cs
  5. 0 3
      Demo/Examples/Compdfkit.Controls/Measure/Property/StraightnessProperty.xaml.cs
  6. 9 9
      Demo/Examples/Compdfkit.Controls/PDFView/PDFSearch/PDFSearchUI/CPDFSearchResultUI.xaml.cs
  7. 2 1
      Demo/Examples/Compdfkit.Controls/PageEdit/PDFPageEdit/CPDFPageEditControl.xaml.cs
  8. 1 1
      Demo/Examples/Compdfkit.Controls/Watermark/AddWatermark/WatermarkDialog.xaml.cs
  9. 1 27
      Demo/Examples/ContentEditor/Properties/Resources.Designer.cs
  10. 1 27
      Demo/Examples/DigitalSignature/Properties/Resources.Designer.cs
  11. 2 29
      Demo/Examples/DocsEditor/Properties/AssemblyInfo.cs
  12. 1 27
      Demo/Examples/DocsEditor/Properties/Resources.Designer.cs
  13. 0 10
      Demo/Examples/Measure/App.xaml.cs
  14. 0 3
      Demo/Examples/Measure/MainWindow.xaml.cs
  15. 2 33
      Demo/Examples/Measure/Properties/AssemblyInfo.cs
  16. 1 26
      Demo/Examples/Measure/Properties/Resources.Designer.cs
  17. 1 11
      Demo/Examples/Measure/Properties/Settings.Designer.cs
  18. 1 26
      Demo/Examples/PDFViewer/Properties/Resources.Designer.cs

+ 1 - 1
Demo/Examples/Compdfkit.Controls/Annotation/PDFAnnotationData/CPDFAnnotationData.cs

@@ -96,7 +96,7 @@ namespace ComPDFKit.Controls.Data
     }
 
     /// <summary>
-    /// 用于换算的dash
+    /// The dash data for conversion.
     /// </summary>
     public class CPDFDashData
     {

+ 1 - 2
Demo/Examples/Compdfkit.Controls/Common/PasswordControl/PasswordBoxControl.xaml.cs

@@ -38,8 +38,7 @@ DependencyProperty.Register("Password", typeof(string), typeof(PasswordBoxContro
             set { SetValue(PasswordProperty, value); }
         }
 
-        #region - 用于绑定ViewModel部分 -
-
+        #region - Used to bind ViewModel part. -
         public ICommand Command
         {
             get { return (ICommand)GetValue(CommandProperty); }

+ 0 - 3
Demo/Examples/Compdfkit.Controls/Measure/Property/MultilineProperty.xaml.cs

@@ -22,9 +22,6 @@ using CFontNameHelper = ComPDFKit.PDFAnnotation.CTextAttribute.CFontNameHelper;
 
 namespace ComPDFKit.Controls.Measure.Property
 {
-    /// <summary>
-    /// MultilineProperty.xaml 的交互逻辑
-    /// </summary>
     public partial class MultilineProperty : UserControl
     {
         //private AnnotAttribEvent MultilineEvent { get; set; }

+ 0 - 3
Demo/Examples/Compdfkit.Controls/Measure/Property/PolygonalProperty.xaml.cs

@@ -22,9 +22,6 @@ using CFontNameHelper = ComPDFKit.PDFAnnotation.CTextAttribute.CFontNameHelper;
 
 namespace ComPDFKit.Controls.Measure.Property
 {
-    /// <summary>
-    /// PolygonalProperty.xaml 的交互逻辑
-    /// </summary>
     public partial class PolygonalProperty : UserControl
     {
         public ObservableCollection<int> SizeList { get; set; } = new ObservableCollection<int>

+ 0 - 3
Demo/Examples/Compdfkit.Controls/Measure/Property/StraightnessProperty.xaml.cs

@@ -24,9 +24,6 @@ using CFontNameHelper = ComPDFKit.PDFAnnotation.CTextAttribute.CFontNameHelper;
 
 namespace ComPDFKit.Controls.Measure.Property
 {
-    /// <summary>
-    /// StraightnessProperty.xaml 的交互逻辑
-    /// </summary>
     public partial class StraightnessProperty : UserControl
     {
         //private AnnotAttribEvent LineEvent { get; set; }

+ 9 - 9
Demo/Examples/Compdfkit.Controls/PDFView/PDFSearch/PDFSearchUI/CPDFSearchResultUI.xaml.cs

@@ -105,7 +105,7 @@ namespace ComPDFKit.Controls.PDFControlUI
         }
 
         /// <summary>
-        /// 清除选中结果
+        /// Clear selected results.
         /// </summary>
         public void ClearSelection()
         {
@@ -118,9 +118,9 @@ namespace ComPDFKit.Controls.PDFControlUI
         }
 
         /// <summary>
-        /// 设置选中结果
+        /// Set selected results.
         /// </summary>
-        /// <param name="selectIndex">选中索引</param>
+        /// <param name="selectIndex">The selected index.</param>
         public void SelectItem(int selectIndex)
         {
             if (ResultListControl.SelectedIndex != selectIndex)
@@ -138,27 +138,27 @@ namespace ComPDFKit.Controls.PDFControlUI
     public class BindSearchResult
     {
         /// <summary>
-        /// 页面索引
+        /// Page index.
         /// </summary>
         public int PageIndex { get; set; }
         /// <summary>
-        /// 搜索文字结果
+        /// The search text results.
         /// </summary>
         public string TextContent { get; set; }
         /// <summary>
-        /// 搜索高亮颜色
+        /// Search highlight color.
         /// </summary>
         public Color HighLightColor { get; set; }
         /// <summary>
-        /// 搜索关键字
+        /// Search keywords.
         /// </summary>
         public string SearchWord { get; set; }
         /// <summary>
-        /// 搜索结果范围区域
+        /// Search result range area.
         /// </summary>
         public Rect TextRect { get; set; }
         /// <summary>
-        /// 页面旋转角度
+        /// The page rotation angle.
         /// </summary>
         public int PageRotate { get; set; }
         public object RefData {  get; set; }

+ 2 - 1
Demo/Examples/Compdfkit.Controls/PageEdit/PDFPageEdit/CPDFPageEditControl.xaml.cs

@@ -815,7 +815,8 @@ namespace ComPDFKit.Controls.PDFControl
                 double xPos, yPos;
                 if (!isDragingEnter)
                 {
-                    Image image = GetImageElement(tempItem);//获取item 图片
+                    //Get the item picture.
+                    Image image = GetImageElement(tempItem);
                     Viewbox viewBox = (tempItem.Content as StackPanel).Children[0] as Viewbox;//获取item宽度
 
                     ShadowPicture.Width = viewBox.ActualWidth;

+ 1 - 1
Demo/Examples/Compdfkit.Controls/Watermark/AddWatermark/WatermarkDialog.xaml.cs

@@ -341,7 +341,7 @@ namespace ComPDFKit.Controls.PDFControl
             weakReference = new WeakReference(this);
 
             FontFamilyCmb.ItemsSource = CPDFFont.GetFontNameDictionary().Keys;
-            // 如果存在helvetica,arial,times,则默认选择
+            // If there is helvetica,arial,times, then select by default.
             if (FontFamilyCmb.Items.Contains("Helvetica"))
             {
                 FontFamilyCmb.SelectedItem = "Helvetica";

+ 1 - 27
Demo/Examples/ContentEditor/Properties/Resources.Designer.cs

@@ -1,24 +1,5 @@
-//------------------------------------------------------------------------------
-// <auto-generated>
-//     此代码由工具生成。
-//     运行时版本: 4.0.30319.42000
-//
-//     对此文件的更改可能导致不正确的行为,如果
-//     重新生成代码,则所做更改将丢失。
-// </auto-generated>
-//------------------------------------------------------------------------------
-
-namespace ContentEditorViewControl.Properties
+namespace ContentEditorViewControl.Properties
 {
-
-
-    /// <summary>
-    ///   强类型资源类,用于查找本地化字符串等。
-    /// </summary>
-    // 此类是由 StronglyTypedResourceBuilder
-    // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
-    // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
-    // (以 /str 作为命令选项),或重新生成 VS 项目。
     [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
     [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
@@ -34,9 +15,6 @@ namespace ContentEditorViewControl.Properties
         {
         }
 
-        /// <summary>
-        ///   返回此类使用的缓存 ResourceManager 实例。
-        /// </summary>
         [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
         internal static global::System.Resources.ResourceManager ResourceManager
         {
@@ -51,10 +29,6 @@ namespace ContentEditorViewControl.Properties
             }
         }
 
-        /// <summary>
-        ///   重写当前线程的 CurrentUICulture 属性,对
-        ///   使用此强类型资源类的所有资源查找执行重写。
-        /// </summary>
         [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
         internal static global::System.Globalization.CultureInfo Culture
         {

+ 1 - 27
Demo/Examples/DigitalSignature/Properties/Resources.Designer.cs

@@ -1,24 +1,5 @@
-//------------------------------------------------------------------------------
-// <auto-generated>
-//     此代码由工具生成。
-//     运行时版本: 4.0.30319.42000
-//
-//     对此文件的更改可能导致不正确的行为,如果
-//     重新生成代码,则所做更改将丢失。
-// </auto-generated>
-//------------------------------------------------------------------------------
-
-namespace DigitalSignature.Properties
+namespace DigitalSignature.Properties
 {
-
-
-    /// <summary>
-    ///   强类型资源类,用于查找本地化字符串等。
-    /// </summary>
-    // 此类是由 StronglyTypedResourceBuilder
-    // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
-    // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
-    // (以 /str 作为命令选项),或重新生成 VS 项目。
     [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
     [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
@@ -34,9 +15,6 @@ namespace DigitalSignature.Properties
         {
         }
 
-        /// <summary>
-        ///   返回此类使用的缓存 ResourceManager 实例。
-        /// </summary>
         [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
         internal static global::System.Resources.ResourceManager ResourceManager
         {
@@ -51,10 +29,6 @@ namespace DigitalSignature.Properties
             }
         }
 
-        /// <summary>
-        ///   重写当前线程的 CurrentUICulture 属性,对
-        ///   使用此强类型资源类的所有资源查找执行重写。
-        /// </summary>
         [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
         internal static global::System.Globalization.CultureInfo Culture
         {

+ 2 - 29
Demo/Examples/DocsEditor/Properties/AssemblyInfo.cs

@@ -4,9 +4,6 @@ using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
 using System.Windows;
 
-// 有关程序集的一般信息由以下
-// 控制。更改这些特性值可修改
-// 与程序集关联的信息。
 [assembly: AssemblyTitle("Document Editor_ComPDFKit")]
 [assembly: AssemblyDescription("")]
 [assembly: AssemblyConfiguration("")]
@@ -16,40 +13,16 @@ using System.Windows;
 [assembly: AssemblyTrademark("")]
 [assembly: AssemblyCulture("")]
 
-// 将 ComVisible 设置为 false 会使此程序集中的类型
-//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
-//请将此类型的 ComVisible 特性设置为 true。
 [assembly: ComVisible(false)]
 
-//若要开始生成可本地化的应用程序,请设置
-//.csproj 文件中的 <UICulture>CultureYouAreCodingWith</UICulture>
-//例如,如果您在源文件中使用的是美国英语,
-//使用的是美国英语,请将 <UICulture> 设置为 en-US。  然后取消
-//对以下 NeutralResourceLanguage 特性的注释。  更新
-//以下行中的“en-US”以匹配项目文件中的 UICulture 设置。
-
 //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
 
 
 [assembly: ThemeInfo(
-    ResourceDictionaryLocation.None, //主题特定资源词典所处位置
-                                     //(未在页面中找到资源时使用,
-                                     //或应用程序资源字典中找到时使用)
-    ResourceDictionaryLocation.SourceAssembly //常规资源词典所处位置
-                                              //(未在页面中找到资源时使用,
-                                              //、应用程序或任何主题专用资源字典中找到时使用)
+    ResourceDictionaryLocation.None,                         
+    ResourceDictionaryLocation.SourceAssembly         
 )]
 
 
-// 程序集的版本信息由下列四个值组成: 
-//
-//      主版本
-//      次版本
-//      生成号
-//      修订号
-//
-//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
-//通过使用 "*",如下所示:
-// [assembly: AssemblyVersion("1.0.*")]
 [assembly: AssemblyVersion("1.13.0.0")]
 [assembly: AssemblyFileVersion("1.13.0.0")]

+ 1 - 27
Demo/Examples/DocsEditor/Properties/Resources.Designer.cs

@@ -1,24 +1,5 @@
-//------------------------------------------------------------------------------
-// <auto-generated>
-//     此代码由工具生成。
-//     运行时版本: 4.0.30319.42000
-//
-//     对此文件的更改可能导致不正确的行为,如果
-//     重新生成代码,则所做更改将丢失。
-// </auto-generated>
-//------------------------------------------------------------------------------
-
-namespace DocsEditControl.Properties
+namespace DocsEditControl.Properties
 {
-
-
-    /// <summary>
-    ///   强类型资源类,用于查找本地化字符串等。
-    /// </summary>
-    // 此类是由 StronglyTypedResourceBuilder
-    // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
-    // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
-    // (以 /str 作为命令选项),或重新生成 VS 项目。
     [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
     [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
@@ -34,9 +15,6 @@ namespace DocsEditControl.Properties
         {
         }
 
-        /// <summary>
-        ///   返回此类使用的缓存 ResourceManager 实例。
-        /// </summary>
         [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
         internal static global::System.Resources.ResourceManager ResourceManager
         {
@@ -51,10 +29,6 @@ namespace DocsEditControl.Properties
             }
         }
 
-        /// <summary>
-        ///   重写当前线程的 CurrentUICulture 属性,对
-        ///   使用此强类型资源类的所有资源查找执行重写。
-        /// </summary>
         [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
         internal static global::System.Globalization.CultureInfo Culture
         {

+ 0 - 10
Demo/Examples/Measure/App.xaml.cs

@@ -1,19 +1,9 @@
 using ComPDFKit.NativeMethod;
 using ComPDFKit.Controls.Helper;
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Threading.Tasks;
 using System.Windows;
-using static ComPDFKit.NativeMethod.CPDFSDKVerifier;
 
 namespace Measure
 {
-    /// <summary>
-    /// App.xaml 的交互逻辑
-    /// </summary>
     public partial class App : Application
     {
         protected override void OnStartup(StartupEventArgs e)

+ 0 - 3
Demo/Examples/Measure/MainWindow.xaml.cs

@@ -31,9 +31,6 @@ using System.Reflection;
 
 namespace Measure
 {
-    /// <summary>
-    /// MainWindow.xaml 的交互逻辑
-    /// </summary>
     public partial class MainWindow : Window, INotifyPropertyChanged
     {
         #region Property

+ 2 - 33
Demo/Examples/Measure/Properties/AssemblyInfo.cs

@@ -4,9 +4,6 @@ using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
 using System.Windows;
 
-// 有关程序集的一般信息由以下
-// 控制。更改这些特性值可修改
-// 与程序集关联的信息。
 [assembly: AssemblyTitle("PDFMeasure")]
 [assembly: AssemblyDescription("")]
 [assembly: AssemblyConfiguration("")]
@@ -16,40 +13,12 @@ using System.Windows;
 [assembly: AssemblyTrademark("")]
 [assembly: AssemblyCulture("")]
 
-// 将 ComVisible 设置为 false 会使此程序集中的类型
-//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
-//请将此类型的 ComVisible 特性设置为 true。
 [assembly: ComVisible(false)]
 
-//若要开始生成可本地化的应用程序,请设置
-//.csproj 文件中的 <UICulture>CultureYouAreCodingWith</UICulture>
-//在 <PropertyGroup> 中。例如,如果你使用的是美国英语。
-//使用的是美国英语,请将 <UICulture> 设置为 en-US。  然后取消
-//对以下 NeutralResourceLanguage 特性的注释。  更新
-//以下行中的“en-US”以匹配项目文件中的 UICulture 设置。
-
-//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
-
-
 [assembly: ThemeInfo(
-    ResourceDictionaryLocation.None, //主题特定资源词典所处位置
-                                     //(未在页面中找到资源时使用,
-                                     //或应用程序资源字典中找到时使用)
-    ResourceDictionaryLocation.SourceAssembly //常规资源词典所处位置
-                                              //(未在页面中找到资源时使用,
-                                              //、应用程序或任何主题专用资源字典中找到时使用)
+    ResourceDictionaryLocation.None, 
+    ResourceDictionaryLocation.SourceAssembly                                        
 )]
 
-
-// 程序集的版本信息由下列四个值组成: 
-//
-//      主版本
-//      次版本
-//      生成号
-//      修订号
-//
-//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
-//通过使用 "*",如下所示:
-// [assembly: AssemblyVersion("1.0.*")]
 [assembly: AssemblyVersion("1.13.0.0")]
 [assembly: AssemblyFileVersion("1.13.0.0")]

+ 1 - 26
Demo/Examples/Measure/Properties/Resources.Designer.cs

@@ -1,24 +1,6 @@
-//------------------------------------------------------------------------------
-// <auto-generated>
-//     此代码由工具生成。
-//     运行时版本:4.0.30319.42000
-//
-//     对此文件的更改可能会导致不正确的行为,并且如果
-//     重新生成代码,这些更改将会丢失。
-// </auto-generated>
-//------------------------------------------------------------------------------
-
-namespace Measure.Properties {
+namespace Measure.Properties {
     using System;
     
-    
-    /// <summary>
-    ///   一个强类型的资源类,用于查找本地化的字符串等。
-    /// </summary>
-    // 此类是由 StronglyTypedResourceBuilder
-    // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
-    // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
-    // (以 /str 作为命令选项),或重新生成 VS 项目。
     [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
     [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
@@ -32,9 +14,6 @@ namespace Measure.Properties {
         internal Resources() {
         }
         
-        /// <summary>
-        ///   返回此类使用的缓存的 ResourceManager 实例。
-        /// </summary>
         [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
         internal static global::System.Resources.ResourceManager ResourceManager {
             get {
@@ -46,10 +25,6 @@ namespace Measure.Properties {
             }
         }
         
-        /// <summary>
-        ///   重写当前线程的 CurrentUICulture 属性,对
-        ///   使用此强类型资源类的所有资源查找执行重写。
-        /// </summary>
         [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
         internal static global::System.Globalization.CultureInfo Culture {
             get {

+ 1 - 11
Demo/Examples/Measure/Properties/Settings.Designer.cs

@@ -1,14 +1,4 @@
-//------------------------------------------------------------------------------
-// <auto-generated>
-//     此代码由工具生成。
-//     运行时版本:4.0.30319.42000
-//
-//     对此文件的更改可能会导致不正确的行为,并且如果
-//     重新生成代码,这些更改将会丢失。
-// </auto-generated>
-//------------------------------------------------------------------------------
-
-namespace Measure.Properties {
+namespace Measure.Properties {
     
     
     [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]

+ 1 - 26
Demo/Examples/PDFViewer/Properties/Resources.Designer.cs

@@ -1,24 +1,6 @@
-//------------------------------------------------------------------------------
-// <auto-generated>
-//     此代码由工具生成。
-//     运行时版本:4.0.30319.42000
-//
-//     对此文件的更改可能会导致不正确的行为,并且如果
-//     重新生成代码,这些更改将会丢失。
-// </auto-generated>
-//------------------------------------------------------------------------------
-
-namespace PDFViewer.Properties {
+namespace PDFViewer.Properties {
     using System;
     
-    
-    /// <summary>
-    ///   一个强类型的资源类,用于查找本地化的字符串等。
-    /// </summary>
-    // 此类是由 StronglyTypedResourceBuilder
-    // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
-    // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
-    // (以 /str 作为命令选项),或重新生成 VS 项目。
     [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
     [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
@@ -32,9 +14,6 @@ namespace PDFViewer.Properties {
         internal Resources() {
         }
         
-        /// <summary>
-        ///   返回此类使用的缓存的 ResourceManager 实例。
-        /// </summary>
         [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
         internal static global::System.Resources.ResourceManager ResourceManager {
             get {
@@ -46,10 +25,6 @@ namespace PDFViewer.Properties {
             }
         }
         
-        /// <summary>
-        ///   重写当前线程的 CurrentUICulture 属性,对
-        ///   使用此强类型资源类的所有资源查找执行重写。
-        /// </summary>
         [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
         internal static global::System.Globalization.CultureInfo Culture {
             get {