2011-06-22 160 views
0

我正在嘗試使用MonoTouch學習。我基本上試圖創建類似於iPhone內置的短信應用程序的東西。使用MonoTouch.Dialog功能創建類似於SMS應用程序的應用程序

我想要在根元素中的編輯按鈕和添加按鈕。這可能嗎?

進出口創造一個像

var root = new RootElement ("My Items"); 
Section section = new Section(); 
foreach (var item in GetData()) { 
    var element = new RootElement(item.ItemName,0,0) { 
     new Section(item.Description) 
    }; 
    section.Add(element); 
} 
root.Add(section); 

根元素什麼我需要做的,加2個按鈕和加載不同的看法?

+0

在UI上你想要兩個按鈕?在NavBar上?在工具欄上? –

回答

2

你可能會添加根到對話視圖控制器,

var dv = new DialogViewController(root,true); 

在這種情況下,只是初始化按鈕視圖控制器的導航項目

dv.NavigationItem.RightBarButtonItem = new UIBarButtonItem("Edit", UIBarButtonItemStyle.Plain,null); 

等和爲dv.NavigationItem.RightBarButtonItem.Clicked設置事件處理程序。

這應該做到這一點!

相關問題