protected virtual void OnRowDoubleClicked(RowDoubleClickedEventArgs e)
 {
     if (RowDoubleClicked != null)
     {
         RowDoubleClicked(this, e);
     }
 }
        private RowDoubleClickedEventArgs OnRowDoubleClickedForOut()
        {
            RowDoubleClickedEventArgs args = new RowDoubleClickedEventArgs();

            OnRowDoubleClicked(args);

            return(args);
        }
        private RowDoubleClickedEventArgs OnRowDoubleClicked(Sell sell)
        {
            RowDoubleClickedEventArgs args = new RowDoubleClickedEventArgs(sell);

            OnRowDoubleClicked(args);

            return(args);
        }
Esempio n. 4
0
        private RowDoubleClickedEventArgs OnRowDoubleClicked(UsedBook usedBook)
        {
            RowDoubleClickedEventArgs args = new RowDoubleClickedEventArgs(usedBook);

            OnRowDoubleClicked(args);

            return(args);
        }
Esempio n. 5
0
        private RowDoubleClickedEventArgs OnRowDoubleClicked(Buy buy)
        {
            RowDoubleClickedEventArgs args = new RowDoubleClickedEventArgs(buy);

            OnRowDoubleClicked(args);

            return(args);
        }
Esempio n. 6
0
        private RowDoubleClickedEventArgs OnRowDoubleClicked(MetaDataBook metaDataBook)
        {
            RowDoubleClickedEventArgs args = new RowDoubleClickedEventArgs(metaDataBook);

            OnRowDoubleClicked(args);

            return(args);
        }