六月婷婷综合激情-六月婷婷综合-六月婷婷在线观看-六月婷婷在线-亚洲黄色在线网站-亚洲黄色在线观看网站

明輝手游網中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

Dotnet WinForm 創建 FAQ2(轉貼)(編程技巧)

[摘要]9. 如何制作一個MDI的窗體1. 建立一個新的Windows Application項目2. 分別加入兩個窗體Form1 、Form23. 設置Form1的IsMdiContainer屬性為True。使它成為MDI主窗體。4. 在Form2中加入一個RichTextBox控件,并設置Dock為:...
9. 如何制作一個MDI的窗體
1. 建立一個新的Windows Application項目
2. 分別加入兩個窗體Form1 、Form2
3. 設置Form1的IsMdiContainer屬性為True。使它成為MDI主窗體。
4. 在Form2中加入一個RichTextBox控件,并設置Dock為:Fill
5. 在Tools 窗體中拖一個MainMenu到窗體Form1,然后建立一個菜單File Windows Help三個菜單項,File中包括New、Exit菜單項;Windows中包括Cascade、Horizontal等。
6. 設置Windows菜單項的MdiList屬性=True, 這樣每一個MDI子窗口將自動加在Windows菜單項下面。
7. 雙擊New菜單項,然后加入以下代碼:
 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等菜單項中加入以下代碼:
 private void menuWindowCasca_Click(object sender, System.EventArgs e)
 {
 this.LayoutMdi( MdiLayout.Cascade) ;

 }
另外還有以下常用的:
this.LayoutMdi(MdiLayout.TileHorizontal);
this.LayoutMdi(MdiLayout.TileVertical);
9. F5運行。
最終版的VS.NET 不知是否會有一個通用的模板,不過用完全手工的方式產生一個MDI的窗口,顯得有些繁瑣,不如VS.NET的IDE方式下那么簡潔。

10. 如何將你的窗體不顯示在任務條上.
當窗體的邊界風格是Tools Window時它都不會出現在任務條上的.另外上面標題5中介紹的方法不僅窗體看不見,也不會出現在任務條上.
如果你現在在Dotnet的世界,這件事也變的簡單,任何的Winform窗體現在都有ShowInTaskbar屬性,所以你只要簡單的設置這個屬性就可以了。同樣你可以選擇在屬性窗口中將ShowInTaskbar由True改為False。或是用代碼的方式:
MyTaskBarFrm.ShowInTaskbar = false ; ( C# )

11. 如何制作一個帶啟動屏幕的窗體.
需要你準備兩個Winform的窗體,一個叫它:SplashScreen,把它做成一個漂亮的窗體。然后你需要一個主窗體叫它:Form1吧,然后在這個窗體加入下面的代碼。
 // ( 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);

 }
不要忘了加上對Threading的引用: using System.Threading;

12. 如何使你的窗體TrayIcon.
實現這個功能你可以運用NotifyIcon控件來達到,從Tools Windows中將NotifyIcon拖到你的窗體上然后在下面的事件加入如下代碼,F5。

 ' // 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
圖標文件你自己準備了,如果成功你可以看到有關NotifyIcond的各種功能了。

13. 如何修改控制窗體的尺寸和長寬尺寸.
主要是修改Winform的Size, Width 和Height屬性。同樣它們都是可以在設計和運行時刻進行修改和設置。
Form1.Size = New System.Drawing.Size(100, 100) ( VB.NET )
Form1.Width += 100(VB.NET )
Form1.Height -= 20(VB.NET )

14. 如何建立一個Windows Explorer風格的窗體.
1.建立一個新的Windows Application
2.從Toolbox窗口拖一個TreeView控件、、一個Splitterk控件、一個ListView控件,分別在屬性窗口中設置TreeView的Dock屬性為::Left;設置ListView控件的Dock屬性為:Fill
3: F5 運行

15. 如何設置初始的啟動窗體
無論是C#還是Visual Basic的Winform項目中你都可以在Solution Explorer窗口中右鍵你的Project,然后選擇屬性,從你Project的屬性頁中選擇你啟動的窗體或是Main()方法。
有些不同的是在目前的VS.NET Beta2中C#項目會自動產生Main() 方法,Visual Basic.Net 的項目中你必須自己添加Main()代碼,C#中你可以將Form1改成任何你可以啟動的窗體名:
 // ( C# )
static void Main ()
{
Application.Run(new Form1());
}

16. 如何建立一個有背景圖像的窗體
現在的Winform中所有的窗體都有一個BackgroundImage屬性,只用對它賦值就可以了。普通窗體可以在運行模式也可以在運行模式完成這個設置。比如在InitializeComponent()或窗體的構造函數中加入這樣的代碼:
this.BackgroundImage = new Bitmap("C:\\DotNetApp\\WinForm\\Tile.bmp" ) ;
對于MDI的主窗體要麻煩一些,在VS.NET的IDE窗體中,當你設置完IsMdiContainer屬性為True后,你需要查看一下InitializeComponent()中是否有這樣的代碼 ( C# ):
this.mdiClient1.Dock = System.Windows.Forms.DockStyle.Fill;
this.mdiClient1.Name = "mdiClient1";
或是在窗口的屬性窗口組合框中看到mdiClient1 System.Windows.Forms.mdiClient.這就是主MDI窗口,不過我沒有在dotnet的文檔中找到任何有關System.Windows.Forms.mdiClient的說明。然后你可以在InitializeComponent()或窗體的構造函數中加入這樣的代碼( C# ):
this.mdiClient1.BackgroundImage= new Bitmap("C:\\DotNetApp\\WinForm\\Tile.bmp" ) ;
網上有一個ImageView的例子,里面演示了給MDI主窗體中背景上加入一行Logo文字的方法,這樣使你的MDI窗體看起來很商業化,具體的你可以這樣做:
1. 先在VS.NET 自動產生代碼的InitializeComponent中看是否有這樣的語句( C# ):
this.Controls.AddRange(new System.Windows.Forms.Control[] {this.mdiClient1});
又是這個mdiClient (haha)
2. 建立以下兩個函數用于顯示這個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()或窗體的構造函數中加入這樣的代碼:
( C# )
this.Controls[0].Paint += new PaintEventHandler( Mdi_OnPaint ) ;
this.Controls[0].Resize += new EventHandler( Mdi_OnResize ) ;
注意將它加在InitializeComponent()后面或是在InitializeComponent函數中this.Controls.AddRange函數之后。




 總的看來,整個Winform部分始終透著Hejlsberg設計VJ++中WFC庫的氣息,現在還沒有任何線索能證明dotnet是照搬WFC庫,但我還是相信Delphi和VJ++的用戶會更容易感受到Hejlsberg的設計風格,比如事件委托在幾年前就被視為領先而嚴重違背“純Java”原則而使開發人員陷入尷尬,現在我們可以很自然的享受這種特性,但另一方面dotnet和Java或Delphi似乎靠得更近些,你幾乎不能像MFC時代那樣去從源代碼中找尋秘密和內幕了。 


主站蜘蛛池模板: 天天干天天干天天操 | 色伊人国产高清在线 | 色综合久久中文字幕网 | 色吧久久 | 中文字幕日韩专区 | 欧美综合第一页 | 天天干天天射天天舔 | 一级黄片一级毛片 | 日日夜夜爽 | 中文字幕亚洲综合久久男男 | 四虎毛片| 日本中文一二区有码在线观看 | 亚洲免费三级 | 天天综合天天做 | 影音先锋亚洲资源 | 亚洲第二色 | 求欧美精品网址 | 欧美囗交 | 伊人网站在线 | 欧美亚洲激情在线 | 深夜福利在线播放 | 婷婷欧美 | 一级毛片黄片 | 午夜精品久久久久久久第一页 | 日本a级片在线播放 | 三级香蕉 | 亚洲欧美国产精品 | 日本一区高清 | 亚洲欧美激情综合第一区 | 天天透天天狠 | 亚洲一区二区在线播放 | 日韩在线观看免费完整版视频 | 亚洲午夜精品一级在线 | 五月婷婷影视 | 日韩v在线| 热久久网站 | 青青青青青在线视频播放 | 日韩欧美区 | 天狼影院伦理片在线bd观看 | 亚洲国产美女精品久久 | 在线播放精品视频 |