You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.2 KiB

// Decompiled with JetBrains decompiler
// Type: jp.HintKat
// Assembly: jp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: DA7BEE59-3059-4D4F-8B17-67206B845D1F
// Assembly location: d:\Downloads\Катакана.exe
using jp.Properties;
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
namespace jp
{
public class HintKat : Form
{
private IContainer components = (IContainer) null;
private Button button1;
private PictureBox pictureBox1;
public HintKat()
{
this.InitializeComponent();
}
private void HintKat_Load(object sender, EventArgs e)
{
this.pictureBox1.Image = (Image) Resources.katakana;
}
private void button1_Click(object sender, EventArgs e)
{
}
protected override void Dispose(bool disposing)
{
if (disposing && this.components != null)
this.components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.button1 = new Button();
this.pictureBox1 = new PictureBox();
((ISupportInitialize) this.pictureBox1).BeginInit();
this.SuspendLayout();
this.button1.Location = new Point(454, 138);
this.button1.Name = "button1";
this.button1.Size = new Size(75, 23);
this.button1.TabIndex = 0;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new EventHandler(this.button1_Click);
this.pictureBox1.Location = new Point(0, 0);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new Size(765, 721);
this.pictureBox1.TabIndex = 1;
this.pictureBox1.TabStop = false;
this.AutoScaleDimensions = new SizeF(6f, 13f);
this.AutoScaleMode = AutoScaleMode.Font;
this.ClientSize = new Size(766, 722);
this.Controls.Add((Control) this.pictureBox1);
this.Controls.Add((Control) this.button1);
this.MaximizeBox = false;
this.Name = nameof (HintKat);
this.ShowIcon = false;
this.Text = "Подсказка";
this.Load += new EventHandler(this.HintKat_Load);
((ISupportInitialize) this.pictureBox1).EndInit();
this.ResumeLayout(false);
}
}
}