用程式化思考讓你變超人。
private Control FindControlByName(string name) { foreach (Control c in this.Controls) //assuming this is a Form { if (c.Name == name) return c; //found } return null; //not found }
張貼留言
沒有留言:
張貼留言