我有一个设置视图,我在其中使用 MT.D 来构建我的 UI。我只是让它从数据库中读取元素以填充部分中的元素。
我不知道如何访问每个元素的属性或值。我想根据每个项目在数据库中的值为元素设置不同的背景颜色。我还希望能够获取选定的值,以便可以在数据库中更新它。这是使用MT.D
. 我可以让值显示出来并像他们应该的那样滑出......但是,为它们设置样式或添加代表以处理我丢失的点击。
List<StyledStringElement> clientTypes = SettingsController.GetClientTypes ();
public SettingsiPhoneView () : base (new RootElement("Home"), true)
{
Root = new RootElement("Settings") {
new Section ("Types") {
new RootElement ("Types") {
new Section ("Client Types") {
from ct in clientTypes
select (Element) ct
}
},
new StringElement ("Other Types")
}