Пример #1
0
        public ChatWindow()
        {
            InitializeComponent();

            chatState  = new ChatState();
            eventQueue = new UIActionQueue(Dispatcher);
        }
 public UIActions(ActionTypes _type)
 {
     Action = _type;
     lock (_actionLock)
     {
         UIActionQueue.Add(this);
     }
 }