gpt4 book ai didi

C# struct with enum For Form Position

转载 作者:太空宇宙 更新时间:2023-11-03 23:41:36 25 4
gpt4 key购买 nike

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

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;
}

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

我认为可能有一种简单的方法可以做到这一点。我的意思是,概括结构实例的使用方式。我不想每次都为每个“IF”循环设置表单属性。我希望你们明白我的意思。

我是 C# 的新手。所以,我正在努力解决这个问题。如果你能帮忙,那就太好了!

谢谢你:)

最佳答案

您可以使用字典,在其中为每个 AppEdge 初始化一个 Edge:

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# .

关于C# struct with enum For Form Position,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28886234/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com