- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为一家律师事务所构建一个 C# 应用程序。在每个 Form
中都有一些 Control
,只有部分用户可以访问(对于其他用户 - 这些 Control
将被禁用)。
我是这样构建的:有一个名为 AuthorizedForm
的类继承自 Form
。此类有一个名为 SetAuthorization
的方法,它启用用户可以访问的所有 Control
,并禁用其余的。应用程序中的每个表单都继承自 AuthorizedForm
。
当用户登录时,SetAuthorization
方法被调用并接收登录用户的 id 和规则列表作为参数。每条规则都包含一个 Control
,以及可以访问该 Control
的用户列表。
该列表实际上分为两个列表:用户组(如律师、律师助理等)和个人用户。因此,例如,如果我将“管理员”组的 ID 和“律师”组的 ID 放在第一个列表中,并将其中一位秘书的 ID 放在第二个列表中 - 那么 Control
将对所有管理员和律师以及该秘书定义为 Enabled
,而对于其他办公室员工,Control
将定义为 Disabled
。
这个列表叫做AuthorizationList
,实际上是一个继承自Tuple
类型的List
类的类,它接收一个 Control
,一个 GroupList
和一个 UserList
(最后两个不过是 byte
类型的 List
>).
GroupList
和 UserList
的定义:
public class GroupList : List<byte> { }
public class UserList : List<byte> { }
AuthorizedList
class 的代码(在 this 答案的帮助下构建):
public class AuthorizationList : List<Tuple<Control, GroupList, UserList>>
{
public void Add(Control control, GroupList groups, UserList users)
{
Add(new Tuple<Control, GroupList, UserList>(control, groups, users));
}
}
AuthorizedForm
类:
public class AuthorizedForm : Form
{
public void SetAuthorization(User loggedInUser, AuthorizationList authorizationList)
{
foreach (var rule in authorizationList)
{
bool isAuthorized = false;
foreach (byte group in rule.Item2)
{
if (group == loggedInUser.Group)
{
isAuthorized = true;
break;
}
}
if (!isAuthorized)
{
foreach (byte user in rule.Item3)
{
if (user == loggedInUser.Id)
{
isAuthorized = true;
break;
}
}
}
if(!isAuthorized)
{
rule.Item1.Enabled = false;
}
}
}
}
调用 SetAuthorization
来自登录函数:
if (user.isLoggedIn)
{
SetAuthorization(user, new AuthorizationList()
{
/*
CONTROL | GROUPS IDS LIST | USER IDS LIST
*/
{ textBox1, new GroupList() { 1, 2, 3 }, new UserList() { 4 } },
{ textBox2, new GroupList() { 1, 2 }, new UserList() { 4 } },
{ button1, new GroupList() { 1 }, new UserList() { 4, 3 } },
});
}
现在,我想让 AuthorizationList
也是 Tuple
类型,它接收一个 Control
和一个 GroupList
仅,或仅 Control
和 UserList
,因此我可以仅为用户组或单个用户设置权限。
如果不显着更改我编写的代码,我想不出一种方法来做到这一点。有没有办法以相对简单和优雅的方式做到这一点?如果没有,您建议如何做?
最佳答案
如何使用一个不是元组的对象来保存授权,它比元组<>更优雅:
public class GroupList : List<byte> { }
public class UserList : List<byte> { }
public class Authorization
{
public Control Control { get; set; }
public GroupList Groups { get; set; }
public UserList Users { get; set; }
}
public class AuthorizationList : List<Authorization>
{
public void Add(Control control, GroupList groupList, UserList userList)
{
Add(new Authorization
{
Control = control,
Groups = groupList,
Users = userList
});
}
public void Add(Control control, GroupList groupList)
{
Add(control, groupList, null);
}
public void Add(Control control, UserList userList)
{
Add(control, null, userList);
}
}
关于c# - 在 C# : How to Create a List of Tuples containing a Control and a list of users which are authorized to access this Control? 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35995281/
我有一个包含文件名 和文件路径 的元组列表。我想找到重复的 filename(但 filepath 可能不同),即文件名相同但 filepath 可能不同的元组。 元组列表示例: file_info
我有一个像这样定义的变量 auto drum = std::make_tuple ( std::make_tuple ( 0.3f , Ex
我有一个包含几个字段的自定义结构,我想在快速 switch 语句中对其进行模式匹配,这样我就可以通过将其中一个字段与另一个字段进行比较来自定义匹配正则表达式。 例如鉴于这种结构: struct MyS
我有一种动态元组结构: template //Should only be tuples class DynamicTuple { vector data; //All data is st
这个问题在这里已经有了答案: What and When to use Tuple? [duplicate] (5 个答案) 关闭 8 年前。 我正在查看 Tuple 的在线示例,但我没有看到任何理
在我的项目中我有很多坐标要处理,在二维情况下我发现(cons x y)的构造比(list x y)快和 (vector x y)。 但是,我不知道如何将 cons 扩展到 3D 或更进一步,因为我没有
我有以下 Scala 代码: def f(x: Int, y: Int): Option[String] = x*y match { case 0 => None case n =>
我的直觉告诉我,在一般情况下,只有宏或复杂类型的体操才能解决这个问题。 Shapeless 或 Scalaz 可以在这里帮助我吗?这是 N=2 问题的具体实例,但我正在寻找的解决方案适用于所有合理的
为什么这段 Scala 代码是这样的: class Test { def foo: (Int, String) = { (123, "123") } def bar: Unit
我是 python 和 pygame 的新手,我正在尝试学习向量和类的基础知识,但在这个过程中我搞砸了,而且我在理解和修复标题中的错误消息方面苦苦挣扎。 这是我的 Vector 类的代码: impor
我正在编写一个程序来打开和读取一个 txt 文件,并在每一行中循环。将第 2 列和第 4 列中的值相乘并将其分配给第 5 列。 A 500.00 A 84.15 ? B 648.80 B 77.61
我知道还有其他几个问题提出了完全相同的问题,但是当我运行时: 导入命令 从 pyDes 导入 * def encrypt(data, password,): k = des(password,
我有一个元组列表,内容如下: >>>myList [(), (), ('',), ('c', 'e'), ('ca', 'ea'), ('d',), ('do',), ('dog', 'ear', '
给定一个 boost::tuple 和 std::tuple,你如何在它们之间进行转换? 也就是说,您将如何实现以下两个功能? template boost::tuple asBoostTuple(
我无法初始化 std::tuple来自 std::tuple 的逐元素元素兼容类型。为什么它不像 boost::tuple 那样工作? #include #include template st
我是 Storm 的新手并且我正在尝试找出如何编写一个 bolt 测试来测试子类 BaseRichBolt 中的 execute(Tuple tuple) 方法。 问题是 Tuple 似乎是不可变的,
如果我有如下元组列表: [('a', 'b'), ('c', 'd'), ('a', 'b'), ('b', 'a')] 我想删除重复的元组(在内容和内部项目顺序方面重复)以便输出为: [('a',
我编写了一个简单的脚本来模拟基于每用户平均收入 (ARPU)、利润率和客户保持客户的年数 (ltvYears) 的客户生命周期值(value) (LTV)。下面是我的脚本。它在“ltvYears =
以下是我的代码,它是一组元组:。输出:设置([(‘A’,20160129,36.44),(‘A’,20160104,41.06),(‘A’,20160201,37.37)])。如何将另一个元组(‘A’
我用以下代码编写了一个程序: import pandas as pd import numpy as np from typing import Tuple def split_data(self,
我是一名优秀的程序员,十分优秀!