ParameterTwoControl.cs 1.0 KB

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace PaintDotNet.ImageCollect.CameraEDOF
  11. {
  12. public partial class ParameterTwoControl : UserControl
  13. {
  14. private void InitializeLanguageText()
  15. {
  16. this.label1.Text = PdnResources.GetString("Menu.Thestartinpositio.Text") + ":";
  17. this.label2.Text = PdnResources.GetString("Menu.Micron.text");
  18. this.button1.Text = PdnResources.GetString("Menu.Start.text");
  19. this.label10.Text = PdnResources.GetString("Menu.Micron.text");
  20. this.label9.Text = PdnResources.GetString("Menu.Shootingheight.text") + ":";
  21. this.label6.Text = PdnResources.GetString("Menu.Layerspacing(micron).text") + ":";
  22. }
  23. public ParameterTwoControl()
  24. {
  25. InitializeComponent();
  26. InitializeLanguageText();
  27. }
  28. }
  29. }