コード例 #1
0
ファイル: LogBoxTests.cs プロジェクト: JohnThomson/libpalaso
		public void ShowLogBox()
		{
			Console.WriteLine("Showing LogBox");
			using (var e = new LogBoxFormForTest())
			{
				progress = e.progress;
				progress.WriteMessage("LogBox test");
				progress.ShowVerbose = true;
				for (int i = 0; i < 1000; i++)
				{
					progress.WriteVerbose(".");
				}

				progress.WriteMessage("done");

				Console.WriteLine(progress.Text);
				Console.WriteLine(progress.Rtf);
				Console.WriteLine("Finished");
			}
		}
コード例 #2
0
        /// <summary>
        /// Make folder-browsing controls invisible, and add in some progress controls for the MakeClone procedure:
        /// </summary>
        private void SwitchControlsForCloning()
        {
            panel.Visible = false;
            progressBar.Visible = false;

            var logBox = new LogBox
            {
                Location = new Point(panel.Location.X, panel.Location.Y + 50),
                Width = panel.Width,
                Height = panel.Height - 50,
                Anchor = panel.Anchor,
                ShowCopyToClipboardMenuItem = true,
                ShowDetailsMenuItem = true,
                ShowDiagnosticsMenuItem = true,
                ShowFontMenuItem = true
            };

            var progressIndicator = new SimpleProgressIndicator
            {
                Location = new Point(panel.Location.X, panel.Location.Y + 35),
                Width = panel.Width,
                Height = 10,
                Style = ProgressBarStyle.Marquee,
                Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top,
                MarqueeAnimationSpeed = 50
            };
            #if MONO
            progressIndicator.MarqueeAnimationSpeed = 3000;
            #else
            #endif
            progressIndicator.IndicateUnknownProgress();

            _clonerStatusLabel = new TextBox
            {
                Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right,
                BackColor = SystemColors.Control,
                BorderStyle = BorderStyle.None,
                Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, ((0))),
                Location = panel.Location,
                Multiline = true,
                Name = "_clonerStatusLabel",
                ReadOnly = true,
                Size = new Size(panel.Width, 25)
            };

            Controls.Add(logBox);
            Controls.Add(progressIndicator);
            Controls.Add(_clonerStatusLabel);

            _clonerMultiProgess = new MultiProgress();
            _clonerMultiProgess.AddMessageProgress(logBox);
            logBox.ProgressIndicator = progressIndicator;
            _clonerMultiProgess.ProgressIndicator = progressIndicator;

            _clonerStatusLabel.Text = string.Format(LocalizationManager.GetString("Messages.Getting","Getting {0}..."),RepositoryKindLabel);
        }
コード例 #3
0
        /// <summary>
        /// Make folder-browsing controls invisible, and add in some progress controls for the MakeClone procedure:
        /// </summary>
        private void SwitchControlsForCloning()
        {
            panel.Visible = false;
            progressBar.Visible = false;

            var logBox = new LogBox();
            logBox.Location = new Point(panel.Location.X, panel.Location.Y + 50);
            logBox.Width = panel.Width;
            logBox.Height = panel.Height - 50;
            logBox.Anchor = panel.Anchor;
            logBox.ShowCopyToClipboardMenuItem = true;
            logBox.ShowDetailsMenuItem = true;
            logBox.ShowDiagnosticsMenuItem = true;
            logBox.ShowFontMenuItem = true;

            var progressIndicator = new SimpleProgressIndicator();
            progressIndicator.Location = new Point(panel.Location.X, panel.Location.Y + 35);
            progressIndicator.Width = panel.Width;
            progressIndicator.Height = 10;
            progressIndicator.Style = ProgressBarStyle.Marquee;
            progressIndicator.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
            #if MONO
            progressIndicator.MarqueeAnimationSpeed = 3000;
            #else
            progressIndicator.MarqueeAnimationSpeed = 50;
            #endif
            progressIndicator.IndicateUnknownProgress();

            _clonerStatusLabel = new TextBox();
            _clonerStatusLabel.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
            _clonerStatusLabel.BackColor = SystemColors.Control;
            _clonerStatusLabel.BorderStyle = BorderStyle.None;
            _clonerStatusLabel.Font = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, ((0)));
            _clonerStatusLabel.Location = panel.Location;
            _clonerStatusLabel.Multiline = true;
            _clonerStatusLabel.Name = "_clonerStatusLabel";
            _clonerStatusLabel.ReadOnly = true;
            _clonerStatusLabel.Size = new Size(panel.Width, 25);

            Controls.Add(logBox);
            Controls.Add(progressIndicator);
            Controls.Add(_clonerStatusLabel);

            _clonerMultiProgess = new MultiProgress();
            _clonerMultiProgess.AddMessageProgress(logBox);
            logBox.ProgressIndicator = progressIndicator;
            _clonerMultiProgess.ProgressIndicator = progressIndicator;

            _clonerStatusLabel.Text = string.Format("Getting {0}...",RepositoryKindLabel);
        }