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

资源简介

使用C#和控件DevExpress开0发的一个小软件,起参考作用

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Text;
using System.Windows.Forms;
using System.Drawing;
using System.Globalization;
using BSE.Windows.Forms.Properties;
using System.Drawing.Drawing2D;

namespace BSE.Windows.Forms
{
    /// 
    /// Represents a Windows progress bar control. 
    /// 

    /// Copyright © 2008 Uwe Eichkorn
    /// THIS CODE AND INFORMATION IS PROVIDED “AS IS“ WITHOUT WARRANTY OF ANY
    /// KIND EITHER EXPRESSED OR IMPLIED INCLUDING BUT NOT LIMITED TO THE
    /// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
    /// PURPOSE. IT CAN BE DISTRIBUTED FREE OF CHARGE AS LONG AS THIS HEADER 
    /// REMAINS UNCHANGED.
    /// 

    [ToolboxBitmap(typeof(System.Windows.Forms.ProgressBar))]
    public partial class ProgressBar : Control
    {
        #region Events
        /// 
        /// Occurs when the value of the BorderColor property changes.
        /// 

        [Description(“Occurs when the value of the BorderColor property is changed on the control.“)]
        public event EventHandler BorderColorChanged;
        /// 
        /// Occurs when the value of the BackgroundColor property changes.
        /// 

        [Description(“Occurs when the value of the BackgroundColor property is changed on the control.“)]
        public event EventHandler BackgroundColorChanged;
        /// 
        /// Occurs when the value of the ValueColor property changes.
        /// 

        [Description(“Occurs when the value of the ValueColor property is changed on the control.“)]
        public event EventHandler ValueColorChanged;
        #endregion

        #region FieldsPrivate
        private Color m_backgroundColor;
        private Color m_valueColor;
        private Color m_borderColor;
        private int m_iMinimum;
        private int m_iMaximum;
        private int m_iValue;
        #endregion

        #region Properties
        /// 
        /// Gets or sets the color used for the background rectangle of this control.
        /// 

        /// 
        /// Type: 
        /// A Color used for the background rectangle of this control.
        /// 

        [Browsable(true)]
        [Description(“The color used for the background rectangle of this control.“)]
        public Color BackgroundColor
        {
            get { return this.m_backgroundColor; }
            set
            {
                if (this.m_backgroundColor != value)
                {
                    this.m_backgroundColor = value;
                    OnBackgroundColorChanged(this EventArgs.Empty);
                }
            }
        }
        /// 

        /// Gets or sets the color u

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

     文件     141824  2014-11-30 21:22  DevExpress系统\代码\BSE.Windows.Forms\bin\Debug\BSE.Windows.Forms.dll

     文件      83333  2014-11-30 21:22  DevExpress系统\代码\BSE.Windows.Forms\bin\Debug\BSE.Windows.Forms.dll.CodeAnalysisLog.xml

     文件          0  2014-11-30 21:22  DevExpress系统\代码\BSE.Windows.Forms\bin\Debug\BSE.Windows.Forms.dll.lastcodeanalysissucceeded

     文件     470528  2014-11-30 21:22  DevExpress系统\代码\BSE.Windows.Forms\bin\Debug\BSE.Windows.Forms.pdb

     文件     195628  2014-11-30 21:22  DevExpress系统\代码\BSE.Windows.Forms\bin\Debug\BSE.Windows.Forms.xml

     文件       9321  2014-11-23 23:06  DevExpress系统\代码\BSE.Windows.Forms\BSE.Windows.Forms.csproj

     文件        846  2014-11-23 23:06  DevExpress系统\代码\BSE.Windows.Forms\BSE.Windows.Forms.csproj.user

     文件        282  2008-01-10 20:36  DevExpress系统\代码\BSE.Windows.Forms\BSE.Windows.Forms.csproj.vspscc

     文件        196  2008-10-21 19:45  DevExpress系统\代码\BSE.Windows.Forms\mssccprj.scc

     文件       8675  2014-11-30 21:22  DevExpress系统\代码\BSE.Windows.Forms\obj\Debug\BSE.Windows.Forms.csproj.FileListAbsolute.txt

     文件       1396  2010-04-04 23:24  DevExpress系统\代码\BSE.Windows.Forms\obj\Debug\BSE.Windows.Forms.csproj.GenerateResource.Cache

     文件     141824  2014-11-30 21:22  DevExpress系统\代码\BSE.Windows.Forms\obj\Debug\BSE.Windows.Forms.dll

     文件        180  2014-11-30 21:22  DevExpress系统\代码\BSE.Windows.Forms\obj\Debug\BSE.Windows.Forms.Panel.resources

     文件     470528  2014-11-30 21:22  DevExpress系统\代码\BSE.Windows.Forms\obj\Debug\BSE.Windows.Forms.pdb

     文件       9338  2014-11-30 21:22  DevExpress系统\代码\BSE.Windows.Forms\obj\Debug\BSE.Windows.Forms.Properties.Resources.resources

     文件       2936  2014-11-30 21:22  DevExpress系统\代码\BSE.Windows.Forms\obj\Debug\BSE.Windows.Forms.XPanderPanel.resources

     文件       2940  2014-11-30 21:22  DevExpress系统\代码\BSE.Windows.Forms\obj\Debug\BSE.Windows.Forms.XPanderPanelList.resources

     文件       6193  2016-01-19 09:17  DevExpress系统\代码\BSE.Windows.Forms\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件      43520  2010-04-04 13:57  DevExpress系统\代码\BSE.Windows.Forms\obj\Debug\Refactor\BSE.Windows.Forms.dll

     文件       6144  2014-11-23 23:06  DevExpress系统\代码\BSE.Windows.Forms\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll

     文件      20137  2008-11-15 20:25  DevExpress系统\代码\BSE.Windows.Forms\ProgressBar\ProgressBar.cs

     文件       1168  2008-10-20 18:13  DevExpress系统\代码\BSE.Windows.Forms\ProgressBar\ProgressBar.Designer.cs

     文件       9892  2008-10-20 18:13  DevExpress系统\代码\BSE.Windows.Forms\ProgressBar\ToolStripProgressBar.cs

     文件        210  2008-11-22 11:59  DevExpress系统\代码\BSE.Windows.Forms\ProgressBar\vssver2.scc

     文件       1689  2008-11-26 19:36  DevExpress系统\代码\BSE.Windows.Forms\Properties\AssemblyInfo.cs

     文件       6946  2014-11-23 23:06  DevExpress系统\代码\BSE.Windows.Forms\Properties\Resources.Designer.cs

     文件       8926  2008-10-20 18:18  DevExpress系统\代码\BSE.Windows.Forms\Properties\Resources.resx

     文件        199  2008-11-27 21:34  DevExpress系统\代码\BSE.Windows.Forms\Properties\vssver2.scc

     文件        308  2008-10-20 18:03  DevExpress系统\代码\BSE.Windows.Forms\Renderer\BseColorTable.cs

     文件      40295  2008-11-02 03:42  DevExpress系统\代码\BSE.Windows.Forms\Renderer\BseRenderer.cs

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

评论

共有 条评论