namespace RSSViewer
{
partial class frmMain
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.miButton1 = new System.Windows.Forms.MenuItem();
this.miDownloadAll = new System.Windows.Forms.MenuItem();
this.miAddFeed = new System.Windows.Forms.MenuItem();
this.miRemoveFeed = new System.Windows.Forms.MenuItem();
this.miButton2 = new System.Windows.Forms.MenuItem();
this.lstFeeds = new System.Windows.Forms.ListView();
this.lstEntries = new System.Windows.Forms.ListView();
this.edtEntryText = new System.Windows.Forms.TextBox();
this.webEntryText = new System.Windows.Forms.WebBrowser();
this.miReadOffline = new System.Windows.Forms.MenuItem();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add( this.miButton1 );
this.mainMenu1.MenuItems.Add( this.miButton2 );
//
// miButton1
//
this.miButton1.MenuItems.Add( this.miDownloadAll );
this.miButton1.MenuItems.Add( this.miAddFeed );
this.miButton1.MenuItems.Add( this.miRemoveFeed );
this.miButton1.MenuItems.Add( this.miReadOffline );
this.miButton1.Text = "Menu";
this.miButton1.Click += new System.EventHandler( this.miButton1_Click );
//
// miDownloadAll
//
this.miDownloadAll.Text = "Download all";
this.miDownloadAll.Click += new System.EventHandler( this.miDownloadAll_Click );
//
// miAddFeed
//
this.miAddFeed.Text = "Add Feed";
this.miAddFeed.Click += new System.EventHandler( this.miAddFeed_Click );
//
// miRemoveFeed
//
this.miRemoveFeed.Text = "Remove Feed";
this.miRemoveFeed.Click += new System.EventHandler( this.miRemoveFeed_Click );
//
// miButton2
//
this.miButton2.Text = "View";
this.miButton2.Click += new System.EventHandler( this.miViewFeed_Click );
//
// lstFeeds
//
this.lstFeeds.Location = new System.Drawing.Point( 19, 20 );
this.lstFeeds.Name = "lstFeeds";
this.lstFeeds.Size = new System.Drawing.Size( 74, 66 );
this.lstFeeds.TabIndex = 0;
//
// lstEntries
//
this.lstEntries.Location = new System.Drawing.Point( 99, 20 );
this.lstEntries.Name = "lstEntries";
this.lstEntries.Size = new System.Drawing.Size( 74, 66 );
this.lstEntries.TabIndex = 1;
//
// edtEntryText
//
this.edtEntryText.Location = new System.Drawing.Point( 99, 176 );
this.edtEntryText.Multiline = true;
this.edtEntryText.Name = "edtEntryText";
this.edtEntryText.Size = new System.Drawing.Size( 74, 66 );
this.edtEntryText.TabIndex = 2;
//
// webEntryText
//
this.webEntryText.Location = new System.Drawing.Point( 19, 176 );
this.webEntryText.Name = "webEntryText";
this.webEntryText.Size = new System.Drawing.Size( 74, 66 );
//
// miReadOffline
//
this.miReadOffline.Text = "Read offline";
this.miReadOffline.Click += new System.EventHandler( this.miReadOffline_Click );
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF( 96F, 96F );
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size( 240, 268 );
this.Controls.Add( this.webEntryText );
this.Controls.Add( this.edtEntryText );
this.Controls.Add( this.lstEntries );
this.Controls.Add( this.lstFeeds );
this.Menu = this.mainMenu1;
this.Name = "frmMain";
this.Text = "RSSViewer";
this.ResumeLayout( false );
}
#endregion
private System.Windows.Forms.ListView lstFeeds;
private System.Windows.Forms.MenuItem miButton1;
private System.Windows.Forms.MenuItem miButton2;
private System.Windows.Forms.ListView lstEntries;
private System.Windows.Forms.TextBox edtEntryText;
private System.Windows.Forms.WebBrowser webEntryText;
private System.Windows.Forms.MenuItem miDownloadAll;
private System.Windows.Forms.MenuItem miAddFeed;
private System.Windows.Forms.MenuItem miRemoveFeed;
private System.Windows.Forms.MenuItem miReadOffline;
}
}