/// <summary>
    /// 循环整个form
    /// </summary>
    /// <param name="control">form</param>
    private void GetValue(Control control)
    {   
        if (control.HasControls())
        {
            foreach (Control c in control.Controls)
            {
                if (c is TextBox)
                {}

    }

    }

  }

相关文章:

  • 2022-12-23
  • 2021-10-05
  • 2022-03-06
  • 2022-12-23
  • 2022-12-23
  • 2022-01-21
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-02-15
  • 2022-12-23
  • 2021-11-24
  • 2021-12-09
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案