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.
我想问一下如何为不同的用户隐藏一些按钮?例如,管理员可以访问所有按钮,但普通成员不能访问某些按钮(例如添加新用户按钮)。
将Visible属性设置为true或false根据您的条件(检查用户),隐藏或显示。
Visible
true
false
if(someConditionExpressionHere) { btnSave.Visible=true; } else { btnSave.Visible=false; }
假设btnSave是您要隐藏/显示的按钮的 ID。您应该someConditionExpressionHere检查一下用户是管理员还是普通用户。
btnSave
someConditionExpressionHere