国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > iOS > 正文

Xamarin.iOS 導(dǎo)航欄各個(gè)位置按鈕設(shè)置

2019-11-09 15:14:13
字體:
供稿:網(wǎng)友

開發(fā)中基本上每個(gè)界面都會(huì)有導(dǎo)航欄,來控制你每個(gè)界面從哪來到哪去。

通常的情況都是導(dǎo)航欄左側(cè)一個(gè)返回按鈕,中間文字展示這個(gè)界面是干嘛的。

偶爾也會(huì)出現(xiàn)右側(cè)一個(gè)圖標(biāo)或者文字,來增加一些功能。本篇介紹一下幾個(gè)簡(jiǎn)單位置按鈕設(shè)置。

1.設(shè)置中間文字。

一般都放在ViewController的構(gòu)造里面,下同。

UILabel titleUILabel = new UILabel(new CGRect(0, 0, 100, 35));			titleUILabel.Text = "中間文字";			NavigationItem.TitleView = titleUILabel;			titleUILabel.TextAlignment = UITextAlignment.Center;			titleUILabel.TextColor = UIColor.White;2.設(shè)置右側(cè)按鈕(圖片)。

// 右側(cè)成長(zhǎng)記錄按鈕			var rightImg = UIImage.FromBundle("圖片資源路徑");			UIBarButtonItem rightBtn = new UIBarButtonItem(rightImg, UIBarButtonItemStyle.Plain				, (sender, e) =>				{					// 點(diǎn)擊事件				});			NavigationItem.SetRightBarButtonItem(rightBtn, true);

3.左側(cè)返回按鈕(文字代替),右側(cè)按鈕(文字)

// 標(biāo)題右側(cè)保存按鈕			UIBarButtonItem rightItem = new UIBarButtonItem("保存", UIBarButtonItemStyle.Plain, (sender, e) =>			{				// 右側(cè)文字點(diǎn)擊			});			NavigationItem.SetRightBarButtonItem(rightItem, true);			// 取消按鈕			UIBarButtonItem leftItem = new UIBarButtonItem("取消", UIBarButtonItemStyle.Plain				, (sender, e) =>				{					// 左側(cè)文字點(diǎn)擊				});			NavigationItem.SetLeftBarButtonItem(leftItem, true);


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 临朐县| 汝城县| 洛隆县| 镇雄县| 淅川县| 绥阳县| 张掖市| 桃江县| 历史| 遵义县| 土默特右旗| 闵行区| 香格里拉县| 奇台县| 千阳县| 九龙城区| 光山县| 永康市| 贵溪市| 休宁县| 桂阳县| 孙吴县| 昌图县| 石景山区| 沂南县| 澎湖县| 临江市| 靖安县| 彭泽县| 旺苍县| 三原县| 同德县| 鹤庆县| 万年县| 清水河县| 仁布县| 靖西县| 宜都市| 普兰店市| 鹤庆县| 衡水市|