ArrowLeftButton.cs 314 B

1234567891011121314
  1. using System.Windows.Forms;
  2. using UAS_MES_NEW.Properties;
  3. namespace UAS_MES_NEW.CustomControl.ButtonUtil
  4. {
  5. public partial class ArrowLeftButton : Button
  6. {
  7. public ArrowLeftButton()
  8. {
  9. InitializeComponent();
  10. this.Image = Resources.two_arrow_left;
  11. }
  12. }
  13. }