123456789101112131415161718192021222324252627 |
- using System;
- using System.Windows.Forms;
- namespace PaintDotNet.CustomControl
- {
- public partial class InformationAdjustControl : BaseUserControl
- {
- private void InitializeLanguageText()
- {
- if (!DesignMode)
- {
- this.label1.Text = PdnResources.GetString("Menu.Imagename.text") + ":";
- this.label2.Text = PdnResources.GetString("Menu.Generatenewgraph.text") + ":";
- this.radioButton1.Text = PdnResources.GetString("Menu.Yes.text");
- this.radioButton2.Text = PdnResources.GetString("Menu.no.text");
- this.groupBox1.Text = PdnResources.GetString("Menu.information.text");
- }
- }
- public InformationAdjustControl()
- {
- InitializeComponent();
- InitializeLanguageText();
- }
- }
- }
|