Example #1
0
        /// <summary>
        /// Модификация от 6 октября 2015 года
        /// Заложен 6 октября 2015 года
        /// </summary>
        /// <param name="lga"></param>
        public static void FillListFromListGamo(List <Gamo> lga)
        {
            vGamo tema;

            foreach (Gamo aa in lga)
            {
                tema = new vGamo(aa);
                manolist.Add(tema);
            }
        }
Example #2
0
        /// <summary>
        /// Модификация от 11 октября 2015 года
        /// Заложен 11 октября 2015 года
        /// </summary>
        /// <param name="lxe"></param>
        public static void FillListFromXML(List <XElement> lxe)
        {
            vGamo tema;

            foreach (XElement aa in lxe)
            {
                tema = new vGamo(aa);
                manolist.Add(tema);
            }
        }
Example #3
0
        private void GamoGrido_MouseDoubleClick(object sender, MouseButtonEventArgs e)
        {
            vGamo aa = (vGamo)this.GamoGrido.CurrentItem;

            if (!(aa == null))
            {
                var winda = new GamoWinda();
                winda.Grido.DataContext = aa;
                winda.Show();
            }
        }