2020-06-15 00:45:39 +00:00
namespace GCMM
{
2020-06-15 19:11:05 +00:00
partial class MainForm
2020-06-15 00:45:39 +00:00
{
/// <summary>
/// Required designer variable.
/// </summary>
private System . ComponentModel . IContainer components = null ;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose ( bool disposing )
{
if ( disposing & & ( components ! = null ) )
{
components . Dispose ( ) ;
}
base . Dispose ( disposing ) ;
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent ( )
{
2020-06-17 21:56:18 +00:00
System . Windows . Forms . ListViewGroup listViewGroup1 = new System . Windows . Forms . ListViewGroup ( "Installed" , System . Windows . Forms . HorizontalAlignment . Center ) ;
System . Windows . Forms . ListViewGroup listViewGroup2 = new System . Windows . Forms . ListViewGroup ( "Available" , System . Windows . Forms . HorizontalAlignment . Center ) ;
System . Windows . Forms . ListViewItem listViewItem1 = new System . Windows . Forms . ListViewItem ( new string [ ] {
2020-06-15 00:45:39 +00:00
"Mod" ,
2020-06-16 13:45:04 +00:00
"modtainers" ,
2020-06-15 00:45:39 +00:00
"1.0" ,
2020-06-16 13:45:04 +00:00
"2020.06.15. 2:01:43" } , - 1 ) ;
2020-06-15 19:11:05 +00:00
System . ComponentModel . ComponentResourceManager resources = new System . ComponentModel . ComponentResourceManager ( typeof ( MainForm ) ) ;
this . modlist = new System . Windows . Forms . ListView ( ) ;
2020-06-15 00:45:39 +00:00
this . modName = ( ( System . Windows . Forms . ColumnHeader ) ( new System . Windows . Forms . ColumnHeader ( ) ) ) ;
2020-06-17 13:08:22 +00:00
this . modAuthor = ( ( System . Windows . Forms . ColumnHeader ) ( new System . Windows . Forms . ColumnHeader ( ) ) ) ;
2020-06-15 00:45:39 +00:00
this . modVersion = ( ( System . Windows . Forms . ColumnHeader ) ( new System . Windows . Forms . ColumnHeader ( ) ) ) ;
this . modTimestamp = ( ( System . Windows . Forms . ColumnHeader ) ( new System . Windows . Forms . ColumnHeader ( ) ) ) ;
2020-06-15 19:11:05 +00:00
this . status = new System . Windows . Forms . Label ( ) ;
2020-06-15 00:45:39 +00:00
this . installbtn = new System . Windows . Forms . Button ( ) ;
this . uninstallbtn = new System . Windows . Forms . Button ( ) ;
this . playbtn = new System . Windows . Forms . Button ( ) ;
2020-06-15 19:11:05 +00:00
this . settingsbtn = new System . Windows . Forms . Button ( ) ;
2020-06-17 21:56:18 +00:00
this . findlog = new System . Windows . Forms . Button ( ) ;
this . unpatched = new System . Windows . Forms . CheckBox ( ) ;
this . modinfobox = new System . Windows . Forms . RichTextBox ( ) ;
2020-06-15 00:45:39 +00:00
this . SuspendLayout ( ) ;
//
2020-06-15 19:11:05 +00:00
// modlist
2020-06-15 00:45:39 +00:00
//
2020-06-15 19:11:05 +00:00
this . modlist . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Bottom )
2020-06-15 00:45:39 +00:00
| System . Windows . Forms . AnchorStyles . Left )
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
2020-06-15 19:11:05 +00:00
this . modlist . BackColor = System . Drawing . Color . FromArgb ( ( ( int ) ( ( ( byte ) ( 216 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 240 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 216 ) ) ) ) ) ;
this . modlist . BorderStyle = System . Windows . Forms . BorderStyle . FixedSingle ;
this . modlist . Columns . AddRange ( new System . Windows . Forms . ColumnHeader [ ] {
2020-06-15 00:45:39 +00:00
this . modName ,
2020-06-16 13:45:04 +00:00
this . modAuthor ,
2020-06-15 00:45:39 +00:00
this . modVersion ,
2020-06-16 13:45:04 +00:00
this . modTimestamp } ) ;
2020-06-15 19:11:05 +00:00
this . modlist . ForeColor = System . Drawing . Color . Green ;
this . modlist . FullRowSelect = true ;
2020-06-17 21:56:18 +00:00
listViewGroup1 . Header = "Installed" ;
listViewGroup1 . HeaderAlignment = System . Windows . Forms . HorizontalAlignment . Center ;
listViewGroup1 . Name = "installed" ;
listViewGroup2 . Header = "Available" ;
listViewGroup2 . HeaderAlignment = System . Windows . Forms . HorizontalAlignment . Center ;
listViewGroup2 . Name = "available" ;
2020-06-15 19:11:05 +00:00
this . modlist . Groups . AddRange ( new System . Windows . Forms . ListViewGroup [ ] {
2020-06-17 21:56:18 +00:00
listViewGroup1 ,
listViewGroup2 } ) ;
2020-06-15 19:11:05 +00:00
this . modlist . HeaderStyle = System . Windows . Forms . ColumnHeaderStyle . Nonclickable ;
this . modlist . HideSelection = false ;
2020-06-17 21:56:18 +00:00
listViewItem1 . Group = listViewGroup1 ;
2020-06-15 19:11:05 +00:00
this . modlist . Items . AddRange ( new System . Windows . Forms . ListViewItem [ ] {
2020-06-17 21:56:18 +00:00
listViewItem1 } ) ;
2020-06-15 19:11:05 +00:00
this . modlist . Location = new System . Drawing . Point ( 12 , 12 ) ;
this . modlist . Name = "modlist" ;
this . modlist . Size = new System . Drawing . Size ( 491 , 468 ) ;
this . modlist . TabIndex = 0 ;
this . modlist . UseCompatibleStateImageBehavior = false ;
this . modlist . View = System . Windows . Forms . View . Details ;
2020-06-16 13:45:04 +00:00
this . modlist . SelectedIndexChanged + = new System . EventHandler ( this . modlist_SelectedIndexChanged ) ;
2020-06-15 00:45:39 +00:00
//
// modName
//
this . modName . Text = "Name" ;
2020-06-16 13:45:04 +00:00
this . modName . Width = 148 ;
2020-06-15 00:45:39 +00:00
//
2020-06-17 13:08:22 +00:00
// modAuthor
//
this . modAuthor . Text = "Author" ;
this . modAuthor . Width = 142 ;
//
2020-06-15 00:45:39 +00:00
// modVersion
//
this . modVersion . Text = "Version" ;
2020-06-16 13:45:04 +00:00
this . modVersion . Width = 62 ;
2020-06-15 00:45:39 +00:00
//
// modTimestamp
//
this . modTimestamp . Text = "Last updated" ;
2020-06-16 13:45:04 +00:00
this . modTimestamp . Width = 120 ;
2020-06-15 00:45:39 +00:00
//
2020-06-15 19:11:05 +00:00
// status
2020-06-15 00:45:39 +00:00
//
2020-06-15 19:11:05 +00:00
this . status . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Left ) ) ) ;
this . status . AutoSize = true ;
this . status . FlatStyle = System . Windows . Forms . FlatStyle . Flat ;
this . status . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 12F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 238 ) ) ) ;
this . status . ForeColor = System . Drawing . Color . Lime ;
this . status . Location = new System . Drawing . Point ( 8 , 487 ) ;
this . status . Name = "status" ;
2020-06-17 21:56:18 +00:00
this . status . Size = new System . Drawing . Size ( 60 , 40 ) ;
2020-06-15 19:11:05 +00:00
this . status . TabIndex = 1 ;
2020-06-17 21:56:18 +00:00
this . status . Text = "Status:\r\nasd" ;
2020-06-15 00:45:39 +00:00
//
// installbtn
//
this . installbtn . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . installbtn . FlatAppearance . MouseDownBackColor = System . Drawing . Color . Green ;
this . installbtn . FlatAppearance . MouseOverBackColor = System . Drawing . Color . FromArgb ( ( ( int ) ( ( ( byte ) ( 0 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 40 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 0 ) ) ) ) ) ;
this . installbtn . FlatStyle = System . Windows . Forms . FlatStyle . Flat ;
this . installbtn . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 14.25F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 238 ) ) ) ;
this . installbtn . Location = new System . Drawing . Point ( 509 , 12 ) ;
this . installbtn . Name = "installbtn" ;
this . installbtn . Size = new System . Drawing . Size ( 263 , 49 ) ;
this . installbtn . TabIndex = 2 ;
this . installbtn . Text = "Install mod" ;
this . installbtn . UseVisualStyleBackColor = true ;
2020-06-17 13:08:22 +00:00
this . installbtn . Click + = new System . EventHandler ( this . installbtn_Click ) ;
2020-06-15 00:45:39 +00:00
//
// uninstallbtn
//
this . uninstallbtn . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . uninstallbtn . FlatAppearance . MouseDownBackColor = System . Drawing . Color . Black ;
this . uninstallbtn . FlatAppearance . MouseOverBackColor = System . Drawing . Color . Black ;
this . uninstallbtn . FlatStyle = System . Windows . Forms . FlatStyle . Flat ;
this . uninstallbtn . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 14.25F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 238 ) ) ) ;
this . uninstallbtn . ForeColor = System . Drawing . Color . Green ;
this . uninstallbtn . Location = new System . Drawing . Point ( 509 , 67 ) ;
this . uninstallbtn . Name = "uninstallbtn" ;
this . uninstallbtn . Size = new System . Drawing . Size ( 263 , 49 ) ;
this . uninstallbtn . TabIndex = 3 ;
this . uninstallbtn . Text = "Uninstall mod" ;
this . uninstallbtn . UseVisualStyleBackColor = true ;
2020-06-17 16:31:20 +00:00
this . uninstallbtn . Click + = new System . EventHandler ( this . uninstallbtn_Click ) ;
2020-06-15 00:45:39 +00:00
//
// playbtn
//
2020-06-15 19:11:05 +00:00
this . playbtn . Anchor = System . Windows . Forms . AnchorStyles . Bottom ;
this . playbtn . FlatAppearance . MouseDownBackColor = System . Drawing . Color . Green ;
this . playbtn . FlatAppearance . MouseOverBackColor = System . Drawing . Color . FromArgb ( ( ( int ) ( ( ( byte ) ( 0 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 40 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 0 ) ) ) ) ) ;
2020-06-15 00:45:39 +00:00
this . playbtn . FlatStyle = System . Windows . Forms . FlatStyle . Flat ;
this . playbtn . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 20.25F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 238 ) ) ) ;
this . playbtn . Location = new System . Drawing . Point ( 250 , 487 ) ;
this . playbtn . Name = "playbtn" ;
this . playbtn . Size = new System . Drawing . Size ( 300 , 62 ) ;
this . playbtn . TabIndex = 5 ;
this . playbtn . Text = "Play" ;
this . playbtn . UseVisualStyleBackColor = true ;
this . playbtn . Click + = new System . EventHandler ( this . playbtn_Click ) ;
//
2020-06-15 19:11:05 +00:00
// settingsbtn
//
this . settingsbtn . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . settingsbtn . FlatAppearance . MouseDownBackColor = System . Drawing . Color . Green ;
this . settingsbtn . FlatAppearance . MouseOverBackColor = System . Drawing . Color . FromArgb ( ( ( int ) ( ( ( byte ) ( 0 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 40 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 0 ) ) ) ) ) ;
this . settingsbtn . FlatStyle = System . Windows . Forms . FlatStyle . Flat ;
this . settingsbtn . Location = new System . Drawing . Point ( 667 , 487 ) ;
this . settingsbtn . Name = "settingsbtn" ;
this . settingsbtn . Size = new System . Drawing . Size ( 105 , 29 ) ;
this . settingsbtn . TabIndex = 6 ;
this . settingsbtn . Text = "Settings" ;
this . settingsbtn . UseVisualStyleBackColor = true ;
this . settingsbtn . Click + = new System . EventHandler ( this . settingsbtn_Click ) ;
//
2020-06-17 21:56:18 +00:00
// findlog
//
this . findlog . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . findlog . FlatAppearance . MouseDownBackColor = System . Drawing . Color . Green ;
this . findlog . FlatAppearance . MouseOverBackColor = System . Drawing . Color . FromArgb ( ( ( int ) ( ( ( byte ) ( 0 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 40 ) ) ) ) , ( ( int ) ( ( ( byte ) ( 0 ) ) ) ) ) ;
this . findlog . FlatStyle = System . Windows . Forms . FlatStyle . Flat ;
this . findlog . Location = new System . Drawing . Point ( 666 , 522 ) ;
this . findlog . Name = "findlog" ;
this . findlog . Size = new System . Drawing . Size ( 105 , 29 ) ;
this . findlog . TabIndex = 7 ;
this . findlog . Text = "Find game log" ;
this . findlog . UseVisualStyleBackColor = true ;
this . findlog . Click + = new System . EventHandler ( this . findlog_Click ) ;
//
// unpatched
//
this . unpatched . AutoSize = true ;
this . unpatched . Location = new System . Drawing . Point ( 12 , 534 ) ;
this . unpatched . Name = "unpatched" ;
this . unpatched . Size = new System . Drawing . Size ( 100 , 17 ) ;
this . unpatched . TabIndex = 8 ;
this . unpatched . Text = "Run unpatched" ;
this . unpatched . UseVisualStyleBackColor = true ;
this . unpatched . CheckedChanged + = new System . EventHandler ( this . unpatched_CheckedChanged ) ;
//
// modinfobox
//
this . modinfobox . BackColor = System . Drawing . Color . Black ;
this . modinfobox . BorderStyle = System . Windows . Forms . BorderStyle . FixedSingle ;
this . modinfobox . ForeColor = System . Drawing . Color . Lime ;
this . modinfobox . Location = new System . Drawing . Point ( 509 , 122 ) ;
this . modinfobox . Name = "modinfobox" ;
this . modinfobox . ReadOnly = true ;
this . modinfobox . Size = new System . Drawing . Size ( 263 , 358 ) ;
this . modinfobox . TabIndex = 9 ;
this . modinfobox . Text = "" ;
//
2020-06-15 19:11:05 +00:00
// MainForm
2020-06-15 00:45:39 +00:00
//
this . AutoScaleDimensions = new System . Drawing . SizeF ( 6F , 13F ) ;
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Font ;
this . BackColor = System . Drawing . Color . Black ;
this . ClientSize = new System . Drawing . Size ( 784 , 561 ) ;
2020-06-17 21:56:18 +00:00
this . Controls . Add ( this . modinfobox ) ;
this . Controls . Add ( this . unpatched ) ;
this . Controls . Add ( this . findlog ) ;
2020-06-15 19:11:05 +00:00
this . Controls . Add ( this . settingsbtn ) ;
2020-06-15 00:45:39 +00:00
this . Controls . Add ( this . playbtn ) ;
this . Controls . Add ( this . uninstallbtn ) ;
this . Controls . Add ( this . installbtn ) ;
2020-06-15 19:11:05 +00:00
this . Controls . Add ( this . status ) ;
this . Controls . Add ( this . modlist ) ;
2020-06-15 00:45:39 +00:00
this . ForeColor = System . Drawing . Color . Lime ;
2020-06-15 19:11:05 +00:00
this . Icon = ( ( System . Drawing . Icon ) ( resources . GetObject ( "$this.Icon" ) ) ) ;
this . Name = "MainForm" ;
this . Text = "Gamecraft Mod Manager" ;
2020-06-15 00:45:39 +00:00
this . Load + = new System . EventHandler ( this . Form1_Load ) ;
this . ResumeLayout ( false ) ;
this . PerformLayout ( ) ;
}
#endregion
2020-06-15 19:11:05 +00:00
private System . Windows . Forms . ListView modlist ;
2020-06-15 00:45:39 +00:00
private System . Windows . Forms . ColumnHeader modName ;
private System . Windows . Forms . ColumnHeader modVersion ;
private System . Windows . Forms . ColumnHeader modTimestamp ;
2020-06-15 19:11:05 +00:00
private System . Windows . Forms . Label status ;
2020-06-15 00:45:39 +00:00
private System . Windows . Forms . Button installbtn ;
private System . Windows . Forms . Button uninstallbtn ;
private System . Windows . Forms . Button playbtn ;
2020-06-15 19:11:05 +00:00
private System . Windows . Forms . Button settingsbtn ;
2020-06-16 13:45:04 +00:00
private System . Windows . Forms . ColumnHeader modAuthor ;
2020-06-17 21:56:18 +00:00
private System . Windows . Forms . Button findlog ;
private System . Windows . Forms . CheckBox unpatched ;
private System . Windows . Forms . RichTextBox modinfobox ;
2020-06-15 00:45:39 +00:00
}
}