C#struct with enum For Form Position

时间:2015-03-05 19:36:59

标签: c# struct enums

我有一个枚举和结构,如下所示。

public enum appedges{Left = 0, Top = 1,Right = 2, Bottom = 3}

public struct edges{ public int X, Y, wide, len;}

此结构已被声明/实例化四次(LeftEdge,RightEdge,TopEdge,BottomEdge),并为其所有成员设置了值。基于按钮Onclick事件,将选择枚举的特定值。基于此,我需要选择一个声明的结构实例来设置Form属性,如下所示:

所以如果选择的枚举值是“Top”,那么

if (_side == appedges.Top)
{
    this.Location = new Point(TopEdge.X, TopEdge.Y);
    this.Height = TopEdge.len;
    this.Width = TopEdge.wide; 
}

类似地,对于枚举的其他值(Left,Bottom,Right ...),我将不得不用不同的struct实例编写相同的“IF”循环。

我认为可能有一种简单的方法可以实现这一目标。我的意思是,推广结构实例的使用方式。我不想每次为每个“IF”循环设置Form属性。我希望你们理解我的观点。

我是c#的新手。所以,我正在努力解决这个问题。如果你能提供帮助,那就太棒了!!

THANKYOU:)

1 个答案:

答案 0 :(得分:3)

您可以使用字典来初始化EdgeAppEdge

var positions = new Dictionary<AppEdge, Edge>
{
    { AppEdge.Left, new Edge { X = 0, Y = 0, ... } },
    { AppEdge.Top, new Edge { X = 0, Y = 0, ... } },
    { AppEdge.Right, new Edge { X = 0, Y = 0, ... } },
    { AppEdge.Bottom, new Edge { X = 0, Y = 0, ... } },
};

然后使用_side作为索引在该词典中查找Edge

var edge = positions[_side];
this.Location = new Point(edge.X, edge.Y);
this.Height = edge.len;
this.Width = edge.wide; 

如果您是C#的新手,请查看naming guidelines for C#