Beispiel #1
0
        private void Orderlines_MouseDoubleClick(object sender, MouseButtonEventArgs e)
        {
            WindowProductAmount wpa = new WindowProductAmount(product);

            wpa.ShowDialog();
            Update();
        }
Beispiel #2
0
        private void Products_MouseDoubleClick(object sender, MouseButtonEventArgs e)
        {
            WindowProductAmount wpa = new WindowProductAmount(product);

            wpa.ShowDialog();
            if (sendProduct)
            {
                eventSendProduct(product, amount);
                this.Close();
            }
        }