You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
576 B
C#
24 lines
576 B
C#
using Newtonsoft.Json.Linq;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using System.Xml.Linq;
|
|
|
|
namespace Rs.Framework
|
|
{
|
|
public static class ControlManager
|
|
{
|
|
public static Control FindControl(Control control,string name)
|
|
{
|
|
Control[] controls = control.Controls.Find(name, true);
|
|
if(controls!=null&&controls.Length>0)
|
|
return controls[0];
|
|
return null;
|
|
}
|
|
}
|
|
}
|