InformationAdjustControl.cs 890 B

12345678910111213141516171819202122232425262728
  1. using Resources;
  2. using System;
  3. using System.Windows.Forms;
  4. namespace SmartCoalApplication.Core.CustomControl
  5. {
  6. public partial class InformationAdjustControl : BaseUserControl
  7. {
  8. private void InitializeLanguageText()
  9. {
  10. if (!DesignMode)
  11. {
  12. this.label1.Text = PdnResources.GetString("Menu.Imagename.text") + ":";
  13. this.label2.Text = PdnResources.GetString("Menu.Generatenewgraph.text") + ":";
  14. this.radioButton1.Text = PdnResources.GetString("Menu.Yes.text");
  15. this.radioButton2.Text = PdnResources.GetString("Menu.no.text");
  16. this.groupBox1.Text = PdnResources.GetString("Menu.information.text");
  17. }
  18. }
  19. public InformationAdjustControl()
  20. {
  21. InitializeComponent();
  22. InitializeLanguageText();
  23. }
  24. }
  25. }