예제 #1
0
        private void RaiseHistoryClick()
        {
            ButtonClickEventHander buttonClickEventHander = this.HistoryClick;

            if (buttonClickEventHander != null)
            {
                buttonClickEventHander(this);
            }
        }
예제 #2
0
        private void RaiseStockChanged()
        {
            ButtonClickEventHander buttonClickEventHander = this.StockChanged;

            if (buttonClickEventHander != null)
            {
                buttonClickEventHander(this);
            }
        }
예제 #3
0
        private void RaiseStockChanged()
        {
            ButtonClickEventHander stockChanged = this.StockChanged;

            if (stockChanged != null)
            {
                stockChanged(this);
            }
        }
예제 #4
0
        private void RaiseEditUnitConvert()
        {
            ButtonClickEventHander buttonClickEventHander = this.EditUnitConvert;

            if (buttonClickEventHander != null)
            {
                buttonClickEventHander(this);
            }
        }
예제 #5
0
        private void RaiseMergeChanged()
        {
            ButtonClickEventHander mergeChanged = this.MergeChanged;

            if (mergeChanged != null)
            {
                mergeChanged(this);
            }
        }
예제 #6
0
        private void RaiseIdChanged()
        {
            ButtonClickEventHander idChanged = this.IdChanged;

            if (idChanged != null)
            {
                idChanged(this);
            }
        }
예제 #7
0
        private void RaiseHistoryClick()
        {
            ButtonClickEventHander historyClick = this.HistoryClick;

            if (historyClick != null)
            {
                historyClick(this);
            }
        }
예제 #8
0
        private void RaiseGroupChanged()
        {
            ButtonClickEventHander groupChanged = this.GroupChanged;

            if (groupChanged != null)
            {
                groupChanged(this);
            }
        }
예제 #9
0
        private void RaiseEditUnitConvert()
        {
            ButtonClickEventHander editUnitConvert = this.EditUnitConvert;

            if (editUnitConvert != null)
            {
                editUnitConvert(this);
            }
        }