예제 #1
0
        private void onComplete(AsynchronousActionsComletedEventArgs e)
        {
            AsynchronousActionsComletedEventHandler handler = ActionCompleted;

            if (handler != null)
            {
                handler(this, e);
            }
        }
예제 #2
0
        private void PostCompleted(object obj)
        {
            IsBusy = false;

            AsynchronousActionsComletedEventArgs e = obj as AsynchronousActionsComletedEventArgs;

            if (e != null)
            {
                onComplete(e);
            }
        }