• 大小: 10.19MB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2023-10-10
  • 语言: 其他
  • 标签: GMap  天地图  

资源简介

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

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

    ..A..H.    307712  2017-09-26 15:56  GMap\.vs\GMap\v14\.suo

     文件        144  2013-01-17 17:32  GMap\Demo.WindowsForms\app.config

     文件       1668  2013-01-17 17:09  GMap\Demo.WindowsForms\bin\Debug\Demo.WindowsForms.application

     文件        144  2013-01-17 17:32  GMap\Demo.WindowsForms\bin\Debug\Demo.WindowsForms.exe.config

     文件       9813  2013-01-17 17:09  GMap\Demo.WindowsForms\bin\Debug\Demo.WindowsForms.exe.manifest

     文件     493056  2013-01-17 17:09  GMap\Demo.WindowsForms\bin\Debug\Demo.WindowsForms.pdb

     文件       1668  2013-01-17 17:09  GMap\Demo.WindowsForms\bin\Debug\Demo.WindowsForms.vshost.application

     文件      11592  2013-01-18 11:00  GMap\Demo.WindowsForms\bin\Debug\Demo.WindowsForms.vshost.exe

     文件        144  2013-01-17 17:32  GMap\Demo.WindowsForms\bin\Debug\Demo.WindowsForms.vshost.exe.config

     文件       9813  2013-01-17 17:09  GMap\Demo.WindowsForms\bin\Debug\Demo.WindowsForms.vshost.exe.manifest

     文件    2396672  2013-01-17 17:08  GMap\Demo.WindowsForms\bin\Debug\GMap.NET.Core.dll

     文件     740864  2013-01-17 17:08  GMap\Demo.WindowsForms\bin\Debug\GMap.NET.Core.pdb

     文件     155136  2013-01-17 17:08  GMap\Demo.WindowsForms\bin\Debug\GMap.NET.WindowsForms.dll

     文件     206336  2013-01-17 17:08  GMap\Demo.WindowsForms\bin\Debug\GMap.NET.WindowsForms.pdb

     文件      53760  2013-01-03 23:54  GMap\Demo.WindowsForms\bin\Debug\Mono.Data.SqliteClient.dll

     文件     335872  2013-01-03 23:54  GMap\Demo.WindowsForms\bin\Debug\MySql.Data.dll

     文件     964096  2013-01-03 23:54  GMap\Demo.WindowsForms\bin\Debug\System.Data.SQLite.DLL

     文件      20137  2013-01-03 23:54  GMap\Demo.WindowsForms\BSE.Windows.Forms\ProgressBar\ProgressBar.cs

     文件       1168  2013-01-03 23:54  GMap\Demo.WindowsForms\BSE.Windows.Forms\ProgressBar\ProgressBar.Designer.cs

     文件       9892  2013-01-03 23:54  GMap\Demo.WindowsForms\BSE.Windows.Forms\ProgressBar\ToolStripProgressBar.cs

     文件        308  2013-01-03 23:54  GMap\Demo.WindowsForms\BSE.Windows.Forms\Renderer\BseColorTable.cs

     文件      40295  2013-01-03 23:54  GMap\Demo.WindowsForms\BSE.Windows.Forms\Renderer\BseRenderer.cs

     文件       4822  2013-01-03 23:54  GMap\Demo.WindowsForms\BSE.Windows.Forms\Renderer\ColorTableBlack.cs

     文件       4828  2013-01-03 23:54  GMap\Demo.WindowsForms\BSE.Windows.Forms\Renderer\ColorTableBlue.cs

     文件       5297  2013-01-03 23:54  GMap\Demo.WindowsForms\BSE.Windows.Forms\Renderer\Office2007BlackColorTable.cs

     文件       5327  2013-01-03 23:54  GMap\Demo.WindowsForms\BSE.Windows.Forms\Renderer\Office2007BlueColorTable.cs

     文件       8894  2013-01-03 23:54  GMap\Demo.WindowsForms\BSE.Windows.Forms\Renderer\Office2007Renderer.cs

     文件       5343  2013-01-03 23:54  GMap\Demo.WindowsForms\BSE.Windows.Forms\Renderer\Office2007SilverColorTable.cs

     文件        318  2013-01-03 23:54  GMap\Demo.WindowsForms\BSE.Windows.Forms\Renderer\OfficeColorTable.cs

     文件      32023  2013-01-03 23:54  GMap\Demo.WindowsForms\BSE.Windows.Forms\Renderer\ProfessionalColorTable.cs

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

评论

共有 条评论