public void SetItemTypes(object type)
 {
     itemType             = ((UIItemType)type);
     rootViewModel.ID     = itemType.ID;
     rootViewModel.IsEdit = true;
     NavigateToItemPage();
 }
        public void LoadItemTypesPage()
        {
            indicator.StartIndicator();
            Itemtypes.Clear();
            var types = App.Database.GetItems().Where(s => s.Group.Contains(rootViewModel.Group)).ToList();

            foreach (var item in types)
            {
                var imageTypeUI = new UIItemType
                {
                    ID        = item.ID,
                    TypeName  = item.Name,
                    TypePhoto = ImageSource.FromStream(() => new MemoryStream(item.Photo))
                };

                Itemtypes.Add(imageTypeUI);
            }

            indicator.EndIndicator();
        }
Esempio n. 3
0
 public void SetValue(int value, UIItemType itemType)
 {
     RealValue  = value;
     m_ItemType = itemType;
 }
Esempio n. 4
0
 public static bool LoadFromFile(string fileName, out UIItemType obj) {
     System.Exception exception = null;
     return LoadFromFile(fileName, out obj, out exception);
 }
Esempio n. 5
0
 /// <summary>
 /// Deserializes xml markup from file into an UIItemType object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output UIItemType object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this XmlSerializer can deserialize the object; otherwise, false</returns>
 public static bool LoadFromFile(string fileName, out UIItemType obj, out System.Exception exception) {
     exception = null;
     obj = default(UIItemType);
     try {
         obj = LoadFromFile(fileName);
         return true;
     }
     catch (System.Exception ex) {
         exception = ex;
         return false;
     }
 }
Esempio n. 6
0
 public static bool Deserialize(string xml, out UIItemType obj) {
     System.Exception exception = null;
     return Deserialize(xml, out obj, out exception);
 }
Esempio n. 7
0
 /// <summary>
 /// Deserializes workflow markup into an UIItemType object
 /// </summary>
 /// <param name="xml">string workflow markup to deserialize</param>
 /// <param name="obj">Output UIItemType object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this XmlSerializer can deserialize the object; otherwise, false</returns>
 public static bool Deserialize(string xml, out UIItemType obj, out System.Exception exception) {
     exception = null;
     obj = default(UIItemType);
     try {
         obj = Deserialize(xml);
         return true;
     }
     catch (System.Exception ex) {
         exception = ex;
         return false;
     }
 }