Exemple #1
0
        public MainWindow()
        {
            InitializeComponent();

            _Entry.Notebook = _Notebook;

            _Notebook.Show();

            _ChatViewManager = new ChatViewManager(_Notebook);
            Assembly asm = Assembly.GetExecutingAssembly();
            _ChatViewManager.Load(asm);
            _ChatViewManager.LoadAll(System.IO.Path.GetDirectoryName(asm.Location),
                                     "smuxi-frontend-swf-*.dll");

            _UI = new SwfUI(_ChatViewManager, this);

            _NetworkStatusbar.Text = String.Empty;
            _Statusbar.Text = String.Empty;
        }
Exemple #2
0
        public MainWindow()
        {
            InitializeComponent();

            _Entry.Notebook = _Notebook;

            _Notebook.Show();

            _ChatViewManager = new ChatViewManager(_Notebook);
            Assembly asm = Assembly.GetExecutingAssembly();

            _ChatViewManager.Load(asm);
            _ChatViewManager.LoadAll(System.IO.Path.GetDirectoryName(asm.Location),
                                     "smuxi-frontend-swf-*.dll");

            _UI = new SwfUI(_ChatViewManager, this);

            _NetworkStatusbar.Text = String.Empty;
            _Statusbar.Text        = String.Empty;
        }
Exemple #3
0
 public SwfUI(ChatViewManager chatViewManager, Control control)
 {
     _ChatViewManager = chatViewManager;
     _Control         = control;
 }
Exemple #4
0
 public SwfUI(ChatViewManager chatViewManager, Control control)
 {
     _ChatViewManager = chatViewManager;
     _Control = control;
 }