Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有网格的用户控件。我在多个 aspx 页面上使用此用户控件。我只需要在其中一个页面中启用网格选择,其余页面需要禁用网格选择。
如何使此用户控件网格选择在多个页面上启用和禁用?
默认情况下禁用网格选择。
在您的用户控件中创建一个属性:
public bool AllowGridSelection { set { if (value) //enable the grid here } }
然后从需要启用选择的页面的代码隐藏中设置该属性:
MyUserControl.AllowGridSelection = true;