Esempio n. 1
0
        public Main()
        {
            QuitOption = QuitOption.QuitProgram;

            Current = this;

            File.Delete(m_shellContentMenuFilePath);

            InitializeComponent();

            this.Text = "Waveface ";

            m_dragDropClipboardHelper = new DragDrop_Clipboard_Helper();

            //initVirtualFolderForm();

            InitTaskbarNotifier();

            m_formSettings                = new FormSettings(this);
            m_formSettings.UseSize        = true;
            m_formSettings.UseLocation    = true;
            m_formSettings.UseWindowState = true;
            m_formSettings.AllowMinimized = false;
            m_formSettings.SaveOnClose    = true;

            //System.Net.ServicePointManager.DefaultConnectionLimit = 64;

            m_autoUpdator = new AppLimit.NetSparkle.Sparkle(WService.WebURL + "/extensions/windowsUpdate/versioninfo.xml");
            m_autoUpdator.StartLoop(true, TimeSpan.FromHours(5.0));

            s_logger.Trace("Constructor: OK");
        }
Esempio n. 2
0
        public VirtualFolderForm()
        {
            InitializeComponent();

            m_dragDropClipboardHelper = new DragDrop_Clipboard_Helper();

            FormBorderStyle = FormBorderStyle.None;
            DoubleBuffered  = true;
            Opacity         = 0.5;

            m_stickyWindow = new StickyWindow(this);
        }
Esempio n. 3
0
        public LeftArea()
        {
            InitializeComponent();

            m_dragDropClipboardHelper = new DragDrop_Clipboard_Helper();
            pbDropArea.AllowDrop      = true;

            m_dropAreaImage = new Bitmap(150, 138);

            InitDefaultFilters();

            InitAddNewButton();
        }