• 大小: 35.05MB
    文件类型: .zip
    金币: 2
    下载: 3 次
    发布日期: 2023-07-11
  • 语言: 其他
  • 标签:

资源简介

GMAP官网源码

资源截图

代码片段和文件信息

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 Demo.WindowsForms.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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         148  2013-05-27 12:13  greatmaps_21438c151897\.hg_archival.txt
     文件          42  2013-05-27 12:13  greatmaps_21438c151897\.hgignore
     文件        1173  2013-05-27 12:13  greatmaps_21438c151897\.hgtags
     文件         599  2013-05-27 12:13  greatmaps_21438c151897\Build\Build Demos NET-CF.bat
     文件        1010  2013-05-27 12:13  greatmaps_21438c151897\Build\Build Demos NET2.bat
     文件         789  2013-05-27 12:13  greatmaps_21438c151897\Build\Build Demos NET4.bat
     文件        1063  2013-05-27 12:13  greatmaps_21438c151897\Build\release-cf.bat
     文件         653  2013-05-27 12:13  greatmaps_21438c151897\Build\release-mono.bat
     文件        1307  2013-05-27 12:13  greatmaps_21438c151897\Build\release.bat
     文件        1168  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\ProgressBar\ProgressBar.Designer.cs
     文件       20137  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\ProgressBar\ProgressBar.cs
     文件        9892  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\ProgressBar\ToolStripProgressBar.cs
     文件         308  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Renderer\BseColorTable.cs
     文件       40295  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Renderer\BseRenderer.cs
     文件        4822  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Renderer\ColorTableBlack.cs
     文件        4828  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Renderer\ColorTableBlue.cs
     文件        5297  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Renderer\Office2007BlackColorTable.cs
     文件        5327  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Renderer\Office2007BlueColorTable.cs
     文件        8894  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Renderer\Office2007Renderer.cs
     文件        5343  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Renderer\Office2007SilverColorTable.cs
     文件         318  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Renderer\OfficeColorTable.cs
     文件       32023  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Renderer\ProfessionalColorTable.cs
     文件         185  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Resources\ChevronDown.png
     文件         156  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Resources\ChevronLeft.png
     文件         164  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Resources\ChevronRight.png
     文件         175  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Resources\ChevronUp.png
     文件        1429  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Resources\Collapse.jpg
     文件        1234  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Resources\Collapse_h.jpg
     文件        1479  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Resources\Expand.jpg
     文件        1305  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Resources\Expand_h.jpg
     文件        7218  2013-05-27 12:13  greatmaps_21438c151897\Demo.WindowsForms\BSE.Windows.Forms\Resources\Resources.Designer.cs
............此处省略659个文件信息

评论

共有 条评论

相关资源