-
大小: 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
相关资源
- .NET C# 反射机制实现无Bug插件演示源码
- 基于C#的文本相似度检测
- InTheHand.Net.Personal.dll173488
- C#控制台下读取3D模型的STL格式文件
- C#实现双态按钮
- C#/.NET 学生管理系统控制台版含数据库
- c#实现id3决策树--MyId3.rar
- 酒店管理系统c#源码
- PuyoPuyo游戏
- C#读取SD卡中采集摄像头数据
- C# winform sidebar控件
- 利用C#语言开发K-Means聚类算法
- C#将SQL Server备份bak文件恢复
- 用c#写的多线程求PI
- 矩阵常用算法C#程序
- 网页设计,c#,ico小图标,共851个!
- 用C#写的小程序
- WinForm验证码源码
- C#模仿Win7标准计算器
- Galil C#通讯链接范例
- C#制作一个简易画图工具
- 飞行棋代码
- 禁止商业用途RPG游戏C#(登陆注册,背
- Huffman树练习
- C# 数字键盘实现
- C# mysql、sqlserver连接demo源码
- winform自绘波形,鼠标滚轮滚动缩放波
- C#仿真飞行仪表盘
- C#动态添加数据到折线图
- C# winform 宿舍管理系统 ,vs2010开发,
评论
共有 条评论