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個按鈕和加載不同的看法?
在UI上你想要兩個按鈕?在NavBar上?在工具欄上? –