Visual C 2010 實現選單項和狀態列

2021-09-08 16:24:50 字數 2033 閱讀 2652

visual studio 2010

其他版本

評價此主題

menustrip

menustrip

窗體還將在使用者選擇選單項時作出響應。

本演練演示了以下任務:

statusstrip

若要將本主題中的**作為乙個單獨的清單進行複製,請參見如何:向窗體提供標準選單項。

注意

顯示的對話方塊和選單命令可能會與「幫助」中的描述不同,具體取決於您現用的設定或版本。

若要更改設定,請在「工具」選單上選擇「匯入和匯出設定」。

使用設定。

系統必備

若要完成本演練,您需要:

建立專案

第一步是建立專案並設定窗體。

建立乙個名為「standardmenuform」的 windows 應用程式專案。

有關更多資訊,請參見如何:建立新的 windows 窗體應用程式專案。

在 windows 窗體設計器中,選擇該窗體。

建立標準選單

menustrip

menustrip

menustrip

menustrip

單擊「檔案」選單項以檢視其預設選單項和對應的圖示。

建立 statusstrip 控制項

statusstrip

statusstrip

statusstrip

statusstrip

statusstrip

statusstrip

處理項的選擇

dropdownitemclicked

單擊在「建立標準選單」一節中建立的「檔案」選單項。

在「屬性」視窗中,單擊「事件」。

dropdownitemclicked

dropdownitemclicked

將下面的**插入到事件處理程式中。

c#vb

// this method is the dropdownitemclicked event handler.

// it passes the clickeditem object to a utility method

// called updatestatus, which updates the text displayed

// in the statusstrip control.

private

void filetoolstripmenuitem_dropdownitemclicked(

object sender, toolstripitemclickedeventargs e)

updatestatus

c#vb

// this utility method assigns the value of a toolstripitem

// control's text property to the text property of the

// toolstripstatuslabel.

private

void updatestatus(toolstripitem item)

selected", item.text);

this.statusstrip1.items[0].text = msg;}}

檢查點

按 f5 編譯並執行窗體。

單擊「檔案」選單項以開啟該選單。

在「檔案」選單上,單擊其中乙個選單項以選擇該項。

statusstrip

後續步驟

在此演練中,您建立了乙個包含標準選單的窗體。

toolstrip

contextmenustrip

contextmenu 元件概述(windows 窗體)。

toolstrip

有關更多資訊,請參見演練:建立具有選單合併功能和 toolstrip 控制項的 mdi 窗體。

toolstrip

如何:為應用程式設定 toolstrip 呈現程式。

Visual C 2010 編譯器試用

昨晚把 visual c 2010 的編譯器 v16.0.21003.1 包括與它對應的庫檔案從 visual studio 2010 beta 2 中剝離了出來,然後我把它們與 visual studio 2008 整合到了一起,來感受一下未來 windows 系統上主流的 c 編譯器,我試著編譯...

Visual C 2010中GDAL的配置問題

這幾天在用gdal讀取乙個shapefile資料,一直糾結於網上沒有合適的配置教程,經過探索找到了乙個配置步驟 1.gdal的編譯 gdal的安裝網上有一大堆教程,這個我就不細說了,但是值得一提的時,把gdal編譯以後生成的乙個資料夾可以備份一下,這樣下次用gdal的時候就不需要重新編譯了,這裡我就...

《Visual C 2010入門經典》讀書筆記

1.p32 vs2010在win32控制台中預設使用unicode字元 不使用unicode方法 project properties configuartion general project defaults character set not set 2.p39 tmain由標頭檔案tchar...