Dotnet WinForm 創(chuàng)建 FAQ2(轉(zhuǎn)貼)(編程技巧)
發(fā)表時(shí)間:2024-02-23 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]9. 如何制作一個(gè)MDI的窗體1. 建立一個(gè)新的Windows Application項(xiàng)目2. 分別加入兩個(gè)窗體Form1 、Form23. 設(shè)置Form1的IsMdiContainer屬性為True。使它成為MDI主窗體。4. 在Form2中加入一個(gè)RichTextBox控件,并設(shè)置Dock為:...
9. 如何制作一個(gè)MDI的窗體1. 建立一個(gè)新的Windows Application項(xiàng)目
2. 分別加入兩個(gè)窗體Form1 、Form2
3. 設(shè)置Form1的IsMdiContainer屬性為True。使它成為MDI主窗體。
4. 在Form2中加入一個(gè)RichTextBox控件,并設(shè)置Dock為:Fill
5. 在Tools 窗體中拖一個(gè)MainMenu到窗體Form1,然后建立一個(gè)菜單File Windows Help三個(gè)菜單項(xiàng),F(xiàn)ile中包括New、Exit菜單項(xiàng);Windows中包括Cascade、Horizontal等。
6. 設(shè)置Windows菜單項(xiàng)的MdiList屬性=True, 這樣每一個(gè)MDI子窗口將自動(dòng)加在Windows菜單項(xiàng)下面。
7. 雙擊New菜單項(xiàng),然后加入以下代碼:
private void menuNew_Click(object sender, System.EventArgs e)<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
{
Form2NewMdiChild ;
NewMdiChild = new Form2() ;
NewMdiChild.MdiParent = this ;
NewMdiChild.Show() ;
}
8. 在Windows的Cascade等菜單項(xiàng)中加入以下代碼:
private void menuWindowCasca_Click(object sender, System.EventArgs e)
{
this.LayoutMdi( MdiLayout.Cascade) ;
}
另外還有以下常用的:
this.LayoutMdi(MdiLayout.TileHorizontal);
this.LayoutMdi(MdiLayout.TileVertical);
9. F5運(yùn)行。
最終版的VS.NET 不知是否會(huì)有一個(gè)通用的模板,不過(guò)用完全手工的方式產(chǎn)生一個(gè)MDI的窗口,顯得有些繁瑣,不如VS.NET的IDE方式下那么簡(jiǎn)潔。
10. 如何將你的窗體不顯示在任務(wù)條上.當(dāng)窗體的邊界風(fēng)格是Tools Window時(shí)它都不會(huì)出現(xiàn)在任務(wù)條上的.另外上面標(biāo)題5中介紹的方法不僅窗體看不見(jiàn),也不會(huì)出現(xiàn)在任務(wù)條上.
如果你現(xiàn)在在Dotnet的世界,這件事也變的簡(jiǎn)單,任何的Winform窗體現(xiàn)在都有ShowInTaskbar屬性,所以你只要簡(jiǎn)單的設(shè)置這個(gè)屬性就可以了。同樣你可以選擇在屬性窗口中將ShowInTaskbar由True改為False;蚴怯么a的方式:
MyTaskBarFrm.ShowInTaskbar = false ; ( C# )
11. 如何制作一個(gè)帶啟動(dòng)屏幕的窗體.需要你準(zhǔn)備兩個(gè)Winform的窗體,一個(gè)叫它:SplashScreen,把它做成一個(gè)漂亮的窗體。然后你需要一個(gè)主窗體叫它:Form1吧,然后在這個(gè)窗體加入下面的代碼。
// ( C# )
protected override void OnLoad ( System.EventArgs e )
{
//make load take a long time
Thread.Sleep(2000);
base.OnLoad(e);
}
然后在Main中加入這樣的代碼:
[STAThread]
static void <?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /> Main ()
{
SplashScreen splashForm = new SplashScreen();
splashForm.Show();
Form1 mainForm = new Form1() ;
mainForm.Load += new EventHandler(splashForm.MainScreen_Load);
Application.Run(mainForm);
}
不要忘了加上對(duì)Threading的引用: using System.Threading;
12. 如何使你的窗體TrayIcon.實(shí)現(xiàn)這個(gè)功能你可以運(yùn)用NotifyIcon控件來(lái)達(dá)到,從Tools Windows中將NotifyIcon拖到你的窗體上然后在下面的事件加入如下代碼,F(xiàn)5。
' // VB.NET
Private mIconA As Icon = New Icon("Icon1.ico")
Private mIconB As Icon = New Icon("Icon2.ico")
Private mIconDisplayed As Boolean
Public Sub New()
MyBase.New
Form1 = Me
'This call is required by the Win Form Designer.
InitializeComponent
'TODO: Add any initialization after the InitializeComponent() call
'this form isn't used directly so hide it immediately
Me.Hide()
'setup the tray icon
Initializenotifyicon()
End Sub
Private Sub Initializenotifyicon()
'setup the default icon
notifyicon = New System.Windows.Forms.NotifyIcon()
NotifyIcon.Icon = mIconA
NotifyIcon.Text = "Right Click for the menu"
NotifyIcon.Visible = True
mIconDisplayed = True
'Insert all MenuItem objects into an array and add them to
'the context menu simultaneously
Dim mnuItms(3) As MenuItem
mnuItms(0) = New MenuItem("Show Form...", New EventHandler(AddressOf Me.ShowFormSelect))
mnuItms(0).DefaultItem = True
mnuItms(1) = New MenuItem("Toggle Image", New EventHandler(AddressOf Me.ToggleImageSelect))
mnuItms(2) = New MenuItem("-")
mnuItms(3) = New MenuItem("Exit", New EventHandler(AddressOf Me.ExitSelect))
Dim notifyiconMnu As ContextMenu = New ContextMenu(mnuItms)
notifyicon.ContextMenu = notifyiconMnu
End Sub
Public Sub ShowFormSelect(ByVal sender As Object, ByVal e As System.EventArgs)
'Display the settings dialog
Dim SettingsForm As New SettingsForm()
SettingsForm.ShowDialog()
End Sub
Public Sub ToggleImageSelect(ByVal sender As Object, ByVal e As System.EventArgs)
'called when the user selects the 'Toggle Image' context menu
'determine which icon is currently visible and switch it
If mIconDisplayed Then
'called when the user selects the 'Show Form' context menu
NotifyIcon.Icon = mIconB
NotifyIcon.Text = "Sad"
mIconDisplayed = False
Else
NotifyIcon.Icon = mIconA
NotifyIcon.Text = "Happy"
mIconDisplayed = True
End If
End Sub
Public Sub ExitSelect(ByVal sender As Object, ByVal e As System.EventArgs)
'called when the user selects the 'Exit' context menu
'hide the tray icon
NotifyIcon.Visible = False
'close up
Me.Close()
End Sub
'Form overrides dispose to clean up the component list.
Public Overloads Overrides Sub Dispose()
MyBase.Dispose()
components.Dispose()
End Sub
圖標(biāo)文件你自己準(zhǔn)備了,如果成功你可以看到有關(guān)NotifyIcond的各種功能了。
13. 如何修改控制窗體的尺寸和長(zhǎng)寬尺寸.主要是修改Winform的Size, Width 和Height屬性。同樣它們都是可以在設(shè)計(jì)和運(yùn)行時(shí)刻進(jìn)行修改和設(shè)置。
Form1.Size = New System.Drawing.Size(100, 100) ( VB.NET )
Form1.Width += 100(VB.NET )
Form1.Height -= 20(VB.NET )
14. 如何建立一個(gè)Windows Explorer風(fēng)格的窗體.1.建立一個(gè)新的Windows Application
2.從Toolbox窗口拖一個(gè)TreeView控件、、一個(gè)Splitterk控件、一個(gè)ListView控件,分別在屬性窗口中設(shè)置TreeView的Dock屬性為::Left;設(shè)置ListView控件的Dock屬性為:Fill
3: F5 運(yùn)行
15. 如何設(shè)置初始的啟動(dòng)窗體無(wú)論是C#還是Visual Basic的Winform項(xiàng)目中你都可以在Solution Explorer窗口中右鍵你的Project,然后選擇屬性,從你Project的屬性頁(yè)中選擇你啟動(dòng)的窗體或是Main()方法。
有些不同的是在目前的VS.NET Beta2中C#項(xiàng)目會(huì)自動(dòng)產(chǎn)生Main() 方法,Visual Basic.Net 的項(xiàng)目中你必須自己添加Main()代碼,C#中你可以將Form1改成任何你可以啟動(dòng)的窗體名:
// ( C# )
static void Main ()
{
Application.Run(new Form1());
}
16. 如何建立一個(gè)有背景圖像的窗體現(xiàn)在的Winform中所有的窗體都有一個(gè)BackgroundImage屬性,只用對(duì)它賦值就可以了。普通窗體可以在運(yùn)行模式也可以在運(yùn)行模式完成這個(gè)設(shè)置。比如在InitializeComponent()或窗體的構(gòu)造函數(shù)中加入這樣的代碼:
this.BackgroundImage = new Bitmap("C:\\DotNetApp\\WinForm\\Tile.bmp" ) ;
對(duì)于MDI的主窗體要麻煩一些,在VS.NET的IDE窗體中,當(dāng)你設(shè)置完IsMdiContainer屬性為True后,你需要查看一下InitializeComponent()中是否有這樣的代碼 ( C# ):
this.mdiClient1.Dock = System.Windows.Forms.DockStyle.Fill;
this.mdiClient1.Name = "mdiClient1";
或是在窗口的屬性窗口組合框中看到mdiClient1 System.Windows.Forms.mdiClient.這就是主MDI窗口,不過(guò)我沒(méi)有在dotnet的文檔中找到任何有關(guān)System.Windows.Forms.mdiClient的說(shuō)明。然后你可以在InitializeComponent()或窗體的構(gòu)造函數(shù)中加入這樣的代碼( C# ):
this.mdiClient1.BackgroundImage= new Bitmap("C:\\DotNetApp\\WinForm\\Tile.bmp" ) ;
網(wǎng)上有一個(gè)ImageView的例子,里面演示了給MDI主窗體中背景上加入一行Logo文字的方法,這樣使你的MDI窗體看起來(lái)很商業(yè)化,具體的你可以這樣做:
1. 先在VS.NET 自動(dòng)產(chǎn)生代碼的InitializeComponent中看是否有這樣的語(yǔ)句( C# ):
this.Controls.AddRange(new System.Windows.Forms.Control[] {this.mdiClient1});
又是這個(gè)mdiClient (haha)
2. 建立以下兩個(gè)函數(shù)用于顯示這個(gè)Logo字符:
// ( C# )
protectedvoid Mdi_OnPaint (Object s,System.Windows.Forms.PaintEventArgs e )
{
Control c = (Control)s;
Rectangle r1 = c.ClientRectangle;
r1.Width -= 4;
r1.Height -= 4;
Rectangle r2 = r1;
r2.Width -= 1;
r2.Height -= 1;
Font f = new Font("Tahoma", 8);
String str = "MyWinform.NET ?2001 MyWinform Application V1.0";
StringFormat sf = new StringFormat();
sf.Alignment = StringAlignment.Far;
sf.LineAlignment = StringAlignment.Far;
e.Graphics.DrawString(str, f, new SolidBrush(SystemColors.ControlDarkDark), r1, sf);
e.Graphics.DrawString(str, f, new SolidBrush(SystemColors.ControlLight), r2, sf);
}
protectedvoid Mdi_OnResize ( Object s ,System.EventArgs e )
{
Control c = (Control)s;
c.Invalidate();
}
3. 在InitializeComponent()或窗體的構(gòu)造函數(shù)中加入這樣的代碼:
( C# )
this.Controls[0].Paint += new PaintEventHandler( Mdi_OnPaint ) ;
this.Controls[0].Resize += new EventHandler( Mdi_OnResize ) ;
注意將它加在InitializeComponent()后面或是在InitializeComponent函數(shù)中this.Controls.AddRange函數(shù)之后。
總的看來(lái),整個(gè)Winform部分始終透著Hejlsberg設(shè)計(jì)VJ++中WFC庫(kù)的氣息,現(xiàn)在還沒(méi)有任何線索能證明dotnet是照搬WFC庫(kù),但我還是相信Delphi和VJ++的用戶會(huì)更容易感受到Hejlsberg的設(shè)計(jì)風(fēng)格,比如事件委托在幾年前就被視為領(lǐng)先而嚴(yán)重違背“純Java”原則而使開(kāi)發(fā)人員陷入尷尬,現(xiàn)在我們可以很自然的享受這種特性,但另一方面dotnet和Java或Delphi似乎靠得更近些,你幾乎不能像MFC時(shí)代那樣去從源代碼中找尋秘密和內(nèi)幕了。