Example #1
0
        /// <summary>
        /// Adds the item to the order and pulls up the customization window.
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        void AddMOGToOrder(object sender, RoutedEventArgs e)
        {
            string item = mogButton.Content.ToString();

            orderContents.Items.Add(item);
            var mog = new SizeCustom();

            containerBorder.Child = mog;
        }
Example #2
0
        /// <summary>
        /// Adds the item to the order and pulls up the customization window.
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        void AddVSToOrder(object sender, RoutedEventArgs e)
        {
            string item = vsButton.Content.ToString();

            orderContents.Items.Add(item);
            var vs = new SizeCustom();

            containerBorder.Child = vs;
        }
Example #3
0
        /// <summary>
        /// Adds the item to the order and pulls up the customization window.
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        void AddDWFToOrder(object sender, RoutedEventArgs e)
        {
            string item = dwfButton.Content.ToString();

            orderContents.Items.Add(item);
            var dwf = new SizeCustom();

            containerBorder.Child = dwf;
        }