~ubuntu-branches/debian/squeeze/gnome-do-plugins/squeeze

« back to all changes in this revision

Viewing changes to BundledLibraries/libgoogle-data-mono-1.4.0.2/samples/DocListUploader/HiddenForm.Designer.cs

  • Committer: Bazaar Package Importer
  • Author(s): Iain Lane
  • Date: 2009-05-07 21:14:41 UTC
  • mfrom: (3.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090507211441-i6kxltm429t90x26
Tags: 0.8.1.3+dfsg-2
* debian/patches/00_use_system_gdata.dpatch: Patch build system to use
  system copy of gdata libs, allowing Google plugins to be enabled.
* debian/patches/00_dfsg_autofoo.dpatch: Drop, now obsolete.
* debian/control: Add libgdata1.4-cil build-dep for above.
* debian/patches/10_fix_rhythmbox_file.dpatch: Add. Look in the correct place
  for the rhythmbox database (Closes: #526337).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
namespace DocListUploader
 
2
{
 
3
    partial class HiddenForm
 
4
    {
 
5
        /// <summary>
 
6
        /// Required designer variable.
 
7
        /// </summary>
 
8
        private System.ComponentModel.IContainer components = null;
 
9
 
 
10
        /// <summary>
 
11
        /// Clean up any resources being used.
 
12
        /// </summary>
 
13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 
14
        protected override void Dispose(bool disposing)
 
15
        {
 
16
            if (disposing && (components != null))
 
17
            {
 
18
                components.Dispose();
 
19
            }
 
20
            base.Dispose(disposing);
 
21
        }
 
22
 
 
23
        #region Windows Form Designer generated code
 
24
 
 
25
        /// <summary>
 
26
        /// Required method for Designer support - do not modify
 
27
        /// the contents of this method with the code editor.
 
28
        /// </summary>
 
29
        private void InitializeComponent()
 
30
        {
 
31
            this.components = new System.ComponentModel.Container();
 
32
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HiddenForm));
 
33
            this.DocListNotifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
 
34
            this.DocListMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
 
35
            this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
 
36
            this.CloseMenuItem = new System.Windows.Forms.ToolStripMenuItem();
 
37
            this.DocListMenu.SuspendLayout();
 
38
            this.SuspendLayout();
 
39
            // 
 
40
            // DocListNotifyIcon
 
41
            // 
 
42
            this.DocListNotifyIcon.ContextMenuStrip = this.DocListMenu;
 
43
            this.DocListNotifyIcon.Icon = ((System.Drawing.Icon) (resources.GetObject("DocListNotifyIcon.Icon")));
 
44
            this.DocListNotifyIcon.Text = "DocList Uploader";
 
45
            this.DocListNotifyIcon.Visible = true;
 
46
            this.DocListNotifyIcon.MouseClick += new System.Windows.Forms.MouseEventHandler(this.DocListNotifyIcon_MouseClick);
 
47
            this.DocListNotifyIcon.DoubleClick += new System.EventHandler(this.DocListNotifyIcon_DoubleClick);
 
48
            this.DocListNotifyIcon.BalloonTipClicked += new System.EventHandler(this.DocListNotifyIcon_BalloonTipClicked);
 
49
            // 
 
50
            // DocListMenu
 
51
            // 
 
52
            this.DocListMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
 
53
            this.optionsToolStripMenuItem,
 
54
            this.CloseMenuItem});
 
55
            this.DocListMenu.Name = "DocListMenu";
 
56
            this.DocListMenu.ShowImageMargin = false;
 
57
            this.DocListMenu.Size = new System.Drawing.Size(142, 48);
 
58
            // 
 
59
            // optionsToolStripMenuItem
 
60
            // 
 
61
            this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
 
62
            this.optionsToolStripMenuItem.Size = new System.Drawing.Size(141, 22);
 
63
            this.optionsToolStripMenuItem.Text = "Options";
 
64
            this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
 
65
            // 
 
66
            // CloseMenuItem
 
67
            // 
 
68
            this.CloseMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
 
69
            this.CloseMenuItem.Name = "CloseMenuItem";
 
70
            this.CloseMenuItem.Size = new System.Drawing.Size(141, 22);
 
71
            this.CloseMenuItem.Text = "Close Application";
 
72
            this.CloseMenuItem.Click += new System.EventHandler(this.CloseMenuItem_Click);
 
73
            // 
 
74
            // HiddenForm
 
75
            // 
 
76
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
 
77
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 
78
            this.ClientSize = new System.Drawing.Size(292, 273);
 
79
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
 
80
            this.Icon = ((System.Drawing.Icon) (resources.GetObject("$this.Icon")));
 
81
            this.Name = "HiddenForm";
 
82
            this.Opacity = 0;
 
83
            this.ShowInTaskbar = false;
 
84
            this.Text = "DocList Uploader";
 
85
            this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
 
86
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.HiddenForm_FormClosing);
 
87
            this.Load += new System.EventHandler(this.HiddenForm_Load);
 
88
            this.DocListMenu.ResumeLayout(false);
 
89
            this.ResumeLayout(false);
 
90
 
 
91
        }
 
92
 
 
93
        #endregion
 
94
 
 
95
        private System.Windows.Forms.NotifyIcon DocListNotifyIcon;
 
96
        private System.Windows.Forms.ContextMenuStrip DocListMenu;
 
97
        private System.Windows.Forms.ToolStripMenuItem CloseMenuItem;
 
98
        private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
 
99
    }
 
100
}
 
101