예제 #1
0
 public AddFolderToolBarItem(SettingsListFoldersPage page)
 {
     _page       = page;
     Text        = AppResources.Add;
     Icon        = "plus";
     ClickAction = () => ClickedItem();
 }
예제 #2
0
 public SettingsFolderListViewCell(SettingsListFoldersPage page)
 {
     this.SetBinding(TextProperty, nameof(SettingsFolderPageModel.Name));
 }
예제 #3
0
 public SettingsFolderListViewCell(SettingsListFoldersPage page)
 {
     this.SetBinding <SettingsFolderPageModel>(TextProperty, s => s.Name);
 }