• 大小: 3.89MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-29
  • 语言: C#
  • 标签: 高亮  

资源简介

ScintillaNET是一个功能强大的文本编辑器 ScintillaNET API可以很方便地添加到您的应用程序或IDE先进的文本编辑和语法高亮。支持语言有MSSQL、C#、python等...

资源截图

代码片段和文件信息

#region Using Directives

using System;
using System.Reflection;
using System.Windows.Forms;

#endregion Using Directives


namespace SCide
{
    internal sealed partial class AboutForm : Form
    {
        #region Properties

        private string AssemblyCompany
        {
            get
            {
                // Get all Company attributes on this assembly
                object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute) false);
                // If there aren‘t any Company attributes return an empty string
                if (attributes.Length == 0)
                    return ““;
                // If there is a Company attribute return its value
                return ((AssemblyCompanyAttribute)attributes[0]).Company;
            }
        }


        private string AssemblyCopyright
        {
            get
            {
                // Get all Copyright attributes on this assembly
                object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute) false);
                // If there aren‘t any Copyright attributes return an empty string
                if (attributes.Length == 0)
                    return ““;
                // If there is a Copyright attribute return its value
                return ((AssemblyCopyrightAttribute)attributes[0]).Copyright;
            }
        }


        private string AssemblyDescription
        {
            get
            {
                // Get all Description attributes on this assembly
                object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute) false);
                // If there aren‘t any Description attributes return an empty string
                if (attributes.Length == 0)
                    return ““;
                // If there is a Description attribute return its value
                return ((AssemblyDescriptionAttribute)attributes[0]).Description;
            }
        }


        private string AssemblyProduct
        {
            get
            {
                // Get all Product attributes on this assembly
                object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute) false);
                // If there aren‘t any Product attributes return an empty string
                if (attributes.Length == 0)
                    return ““;
                // If there is a Product attribute return its value
                return ((AssemblyProductAttribute)attributes[0]).Product;
            }
        }


        private string Assemblytitle
        {
            get
            {
                // Get all title attributes on this assembly
                object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblytitleAtt

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    .......      1995  2012-08-31 09:01  ScintillaNET\bin\Debug\License.txt

     文件      94720  2014-08-29 11:27  ScintillaNET\bin\Debug\SCide.exe

     文件        144  2014-08-27 17:28  ScintillaNET\bin\Debug\SCide.exe.config

     文件     103936  2014-08-29 11:27  ScintillaNET\bin\Debug\SCide.pdb

     文件      11592  2014-08-29 14:45  ScintillaNET\bin\Debug\SCide.vshost.exe

     文件        144  2014-08-27 17:28  ScintillaNET\bin\Debug\SCide.vshost.exe.config

     文件        490  2010-03-17 22:39  ScintillaNET\bin\Debug\SCide.vshost.exe.manifest

     文件     648704  2012-08-31 09:01  ScintillaNET\bin\Debug\SciLexer.dll

     文件     908800  2012-08-31 09:01  ScintillaNET\bin\Debug\SciLexer64.dll

     文件     624640  2014-08-28 12:47  ScintillaNET\bin\Debug\ScintillaNET.dll

     文件    1361408  2014-08-28 12:47  ScintillaNET\bin\Debug\ScintillaNET.pdb

     文件     417792  2012-08-31 09:01  ScintillaNET\bin\Debug\WeifenLuo.WinFormsUI.Docking.dll

     文件       3830  2012-08-31 09:01  ScintillaNET\keyee.txt

    .......    648704  2012-08-31 09:01  ScintillaNET\Libraries\SciLexer.dll

    .......    908800  2012-08-31 09:01  ScintillaNET\Libraries\SciLexer64.dll

    .......    417792  2012-08-31 09:01  ScintillaNET\Libraries\WeifenLuo.WinFormsUI.Docking.dll

     文件       4838  2014-08-28 09:54  ScintillaNET\SCide\AboutForm.cs

     文件      10876  2014-08-28 08:54  ScintillaNET\SCide\AboutForm.Designer.cs

     文件      14746  2014-08-28 09:54  ScintillaNET\SCide\AboutForm.resx

     文件        144  2014-08-27 17:28  ScintillaNET\SCide\app.config

     文件       4354  2014-08-28 11:29  ScintillaNET\SCide\DocumentForm.cs

    .......      3002  2012-08-31 09:01  ScintillaNET\SCide\DocumentForm.Designer.cs

    .......      6189  2012-08-31 09:01  ScintillaNET\SCide\DocumentForm.resx

     文件       5927  2014-08-28 18:56  ScintillaNET\SCide\Form1.cs

     文件       6428  2014-08-28 18:56  ScintillaNET\SCide\Form1.Designer.cs

     文件       6218  2014-08-28 18:56  ScintillaNET\SCide\Form1.resx

     文件        694  2014-08-28 15:16  ScintillaNET\SCide\Form2.cs

     文件       1905  2014-08-28 15:15  ScintillaNET\SCide\Form2.Designer.cs

     文件       5817  2014-08-28 15:15  ScintillaNET\SCide\Form2.resx

     文件       6877  2014-08-29 10:53  ScintillaNET\SCide\IniLexer.cs

............此处省略479个文件信息

评论

共有 条评论