-
大小: 19KB文件类型: .zip金币: 1下载: 0 次发布日期: 2021-06-03
- 语言: C#
- 标签: C# WebBrowser IE版本
资源简介
C# WebBrowser 适应你想要的IE版本核心 方便你在内嵌式C/S 更好的体验B/S
代码片段和文件信息
using System;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
namespace Cyotek.Windows.Forms
{
// Cyotek GroupBox Component
// www.cyotek.com
///
/// Represents a Windows control that displays a frame at the top of a group of controls with an optional caption and icon.
///
[ToolboxItem(true)]
[DefaultEvent(“Click“)]
[DefaultProperty(“Text“)]
[Designer(“System.Windows.Forms.Design.GroupBoxDesigner System.Design Version=2.0.0.0 Culture=neutral PublicKeyToken=b03f5f7f11d50a3a“)]
[Designer(“System.Windows.Forms.Design.DocumentDesigner System.Design Version=2.0.0.0 Culture=neutral PublicKeyToken=b03f5f7f11d50a3a“ typeof(IRootDesigner))]
internal class GroupBox : System.Windows.Forms.GroupBox
{
#region Instance Fields
private Border3DSide _borders = Border3DSide.Top;
private Pen _bottomPen;
private Color _headerForeColor;
private Size _iconMargin;
private Image _image;
private Color _lineColorBottom;
private Color _lineColorTop;
private bool _showBorders;
private Pen _topPen;
#endregion
#region Public Constructors
///
/// Initializes a new instance of the class.
///
public GroupBox()
{
_showBorders = true;
_iconMargin = new Size(0 6);
_lineColorBottom = SystemColors.ButtonHighlight;
_lineColorTop = SystemColors.ButtonShadow;
_headerForeColor = SystemColors.HotTrack;
this.Setstyle(Controlstyles.DoubleBuffer | Controlstyles.AllPaintingInWmPaint | Controlstyles.ResizeRedraw | Controlstyles.UserPaint | Controlstyles.SupportsTransparentBackColor true);
this.CreateResources();
}
#endregion
#region Overridden Properties
///
/// Gets a rectangle that represents the dimensions of the .
///
///
///
/// A with the dimensions of the .
///
public override Rectangle DisplayRectangle
{
get
{
Size clientSize;
int fontHeight;
int imageSize;
clientSize = base.ClientSize;
fontHeight = this.Font.Height;
if (_image != null)
{
imageSize = _iconMargin.Width + _image.Width + 3;
}
else
{
imageSize = 0;
}
return new Rectangle(3 + imageSize fontHeight + 3 Math.Max(clientSize.Width - (imageSize + 6) 0) Math.Max((clientSize.Height - fontHeight) - 6 0));
}
}
///
/// Returns or sets the text displayed in this control.
///
///
///
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 9999 2014-06-28 16:40 GroupBox.cs
文件 7406 2014-06-28 14:25 icon.ico
文件 3336 2014-06-28 15:10 IeBrowserEmulation.csproj
文件 1004 2014-06-28 14:18 IeBrowserEmulation.sln
文件 7495 2014-06-28 16:40 InternetExplorerBrowserEmulation.cs
文件 4981 2014-06-28 16:40 MainForm.cs
文件 6475 2014-06-28 16:04 MainForm.Designer.cs
文件 17229 2014-06-28 16:04 MainForm.resx
文件 663 2014-06-28 16:40 Program.cs
目录 0 2014-06-28 14:47 Properties\
文件 869 2014-06-28 16:40 Properties\AssemblyInfo.cs
相关资源
- C#解析HL7消息的库135797
- C# OCR数字识别实例,采用TessnetOcr,对
- 考试管理系统 - C#源码
- asp.net C#购物车源代码
- C#实时网络流量监听源码
- C#百度地图源码
- Visual C#.2010从入门到精通配套源程序
- C# 软件版本更新
- C#屏幕软键盘源码,可以自己定制界面
- 智慧城市 智能家居 C# 源代码
- c#获取mobile手机的IMEI和IMSI
- C#实现简单QQ聊天程序
- 操作系统 模拟的 欢迎下载 C#版
- C#写的计算机性能监控程序
- 用C#实现邮件发送,有点类似于outlo
- MVC model层代码生成器 C#
- c#小型图书销售系统
- C# Socket Server Client 通讯应用 完整的服
- c# winform 自动登录 百度账户 源代码
- C#编写的16进制计算器
- C#TCP通信协议
- C# 数据表(Dataset)操作 合并 查询一
- C#语音识别系统speechsdk51,SpeechSDK51L
- 数据库备份还原工具1.0 C# 源码
-
[免费]xm
lDocument 节点遍历C# - EQ2008LEDc#开发实例
- DirectX.Capturec# winform 操作摄像头录像附
- c# 实现的最大最小距离方法对鸢尾花
- C#版保龄球记分代码
- C#自定义控件
评论
共有 条评论