基本信息
源码名称:C# ListView 用法以及窗体美化 示例源码
源码大小:0.58M
文件格式:.rar
开发语言:C#
更新时间:2013-10-01
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using CSharpWin;
namespace CSharpWinDemo
{
public partial class FormCSharpWinDemo : SkinForm
{
#region Fileds
private SystemMenuNativeWindow _systemMenuNativeWindow;
private OwnerDrawSystemMenuHook _ownerDrawSystemMenuHook;
#endregion
#region Constructors
public FormCSharpWinDemo()
{
InitializeComponent();
Init();
InitEvents();
}
#endregion
#region Properties
public override string Text
{
get
{
return base.Text;
}
set
{
base.Text = string.Format(
"CS 程序员之窗 - {0}", value);
}
}
#endregion
#region Override Methods
protected override void OnCreateControl()
{
base.OnCreateControl();
if (_systemMenuNativeWindow == null)
{
_systemMenuNativeWindow = new SystemMenuNativeWindow(this);
}
_systemMenuNativeWindow.AppendSeparator();
_systemMenuNativeWindow.AppendMenu(
1000,
"关于...(&A)",
delegate(object sender, EventArgs e)
{
AboutBoxCSharpWinDemo about = new AboutBoxCSharpWinDemo();
about.ShowDialog();
});
_systemMenuNativeWindow.AppendMenu(
1001,
"访问 www.csharpwin.com",
delegate(object sender, EventArgs e)
{
Process.Start("www.csharpwin.com");
});
}
protected override void OnHandleDestroyed(EventArgs e)
{
base.OnHandleDestroyed(e);
if (_systemMenuNativeWindow != null)
{
_systemMenuNativeWindow.Dispose();
_systemMenuNativeWindow = null;
}
}
#endregion
#region Private Methods
private void Init()
{
try
{
_ownerDrawSystemMenuHook = new OwnerDrawSystemMenuHook();
}
catch (Exception ex)
{
MessageBox.Show("HookSystemMenu:" ex.ToString());
}
}
private void InitEvents()
{
linkLabelCSharpWin.Click = delegate(object sender, EventArgs e)
{
Process.Start("www.csharpwin.com");
};
buttonAbout.Click = delegate(object sender, EventArgs e)
{
AboutBoxCSharpWinDemo about = new AboutBoxCSharpWinDemo();
about.ShowDialog();
};
btnSmallIcon.Click = delegate(object sender, EventArgs e)
{
FormListViewExDemo form = new FormListViewExDemo();
form.ShowDialog();
};
btnLargeIcon.Click = delegate(object sender, EventArgs e)
{
FormListViewExDemo form = new FormListViewExDemo(View.LargeIcon);
form.ShowDialog();
};
btnList.Click = delegate(object sender, EventArgs e)
{
FormListViewExDemo form = new FormListViewExDemo(View.List);
form.ShowDialog();
};
btnTile.Click = delegate(object sender, EventArgs e)
{
FormListViewExDemo form = new FormListViewExDemo(View.Tile);
form.ShowDialog();
};
btnDetails.Click = delegate(object sender, EventArgs e)
{
FormListViewExDetails form = new FormListViewExDetails();
form.ShowDialog();
};
}
private void ButtonAboutClick(object sender, EventArgs e)
{
AboutBoxCSharpWinDemo f = new AboutBoxCSharpWinDemo();
f.ShowDialog();
}
#endregion
}
}