コード例 #1
0
 public ResumeMenuItem(string name, string image, anAction action, List<MenuType> supports)
 {
     text = name;
     imageSource = image;
     command = action;
     supportedMenus = supports;
 }
コード例 #2
0
 public MenuItem(aResource name, string image, anAction action, List<Type> supports)
 {
     dynamicText = name;
     imageSource = image;
     command = action;
     supportedTypes = supports;
 }
コード例 #3
0
 public MenuItem(string name, string image, anAction action, List<Type> supportsTypes, List<MenuType> supportsMenus)
 {
     text = name;
     imageSource = image;
     command = action;
     supportedTypes = supportsTypes;
     supportedMenus = supportsMenus;
 }
コード例 #4
0
 public MenuItem(string name, string image, anAction action, List <Type> supportsTypes, List <MenuType> supportsMenus)
 {
     text           = name;
     imageSource    = image;
     command        = action;
     supportedTypes = supportsTypes;
     supportedMenus = supportsMenus;
 }
コード例 #5
0
 public MenuItem(string name, string image, anAction action, int sort)
 {
     text = name;
     imageSource = image;
     command = action;
     sortOrder = sort;
 }
コード例 #6
0
 public MenuItem(aResource name, string image, anAction action)
 {
     dynamicText = name;
     imageSource = image;
     command = action;
 }
コード例 #7
0
 public MenuItem(string name, string image, anAction action)
 {
     text = name;
     imageSource = image;
     command = action;
 }
コード例 #8
0
 public MenuItem(aResource name, aResource image, anAction action)
 {
     dynamicText = name;
     dynamicImage = image;
     command = action;
 }
コード例 #9
0
 public MenuItem(aResource name, aResource image, anAction action, int sort)
 {
     dynamicText = name;
     dynamicImage = image;
     command = action;
     sortOrder = sort;
 }
コード例 #10
0
 public MenuItem(aResource name, string image, anAction action)
 {
     dynamicText = name;
     imageSource = image;
     command     = action;
 }
コード例 #11
0
 public MenuItem(string name, string image, anAction action)
 {
     text        = name;
     imageSource = image;
     command     = action;
 }
コード例 #12
0
 public MenuItem(aResource name, aResource image, anAction action)
 {
     dynamicText  = name;
     dynamicImage = image;
     command      = action;
 }