找传奇、传世资源到传世资源站!

C# listview高级重绘(自定义控件)

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

from clipboard
from clipboard
from clipboard
from clipboard
from clipboard
from clipboardusing 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 }}

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复