-
大小: 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.xm
文件 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.xm
文件 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个文件信息
- 上一篇:Json、xm
l、CSV数据互转工具 - 下一篇:七牛云文件批量上传,C#
相关资源
- 16.1全汉化,包括XAF、设计时刻、Win
- DevExpress9.2完整版
- Professional DevExpress ASP.NET Controls英文原
- Devexpress Winform中文文档.CHM
- DevExpress中文文档
- DevExpress winform XtraEditor常用控件
- DEV之物业管理
- Dev WinForm通用控件导出Excel方法(支持
- DEVExpress中文帮助文档.CHM版
- devexpress教程中文.chm
- devexpress控件说明大全
- DevExpress控件说明中文版-WinForm
- Professional+DevExpress+ASP.NET+Controls.pdf
- DevExpress WinForm中文文档
- DevexpressWinform中文文档
- Devexpress Winform中文文档纯中文文档N
- DevExpress控件forC#-8.2
- Devexpress 中文说明文档winform
- C# winform 经典ERP源码-采用了DevExpress
- DevExpress VCL 18.1.4 Full Sources完整源码
- DevExpress VCL V19.1.2 FullSource〖D7~D10.3Ri
- Winform控件库-DevExpressComponents-14.zip
- DevExpress VCL V18.2.8 FullSource〖D7~D10.3Ri
- C# DevExpress SearchLookUpEdit 多选功能封装
- winform 快速开发框架 仓库管理系统源
- Devexpress GridControl冻结头部几行
- devexpress Report demo asp.net
- Devexpress dxperience 13.1.5汉化资源
- winform devexpress 仓库管理系统源码
- DevExpress控件使用大全
评论
共有 条评论