gpt4 book ai didi

c# - 我应该如何在通用类/表单中使用变量?

转载 作者:太空宇宙 更新时间:2023-11-03 12:16:47 26 4
gpt4 key购买 nike

我有一个由两个用户控件组合而成的表单,一个显示对象列表,另一个显示列表中所选对象的详细信息。这种形式适用于两种类型的类(class),例如动物和人。这两个类具有大部分相似的属性,例如姓名、年龄却不完全相同。所以我正在努力使表格通用。 The form looks like this

我主要使用 this 设置表单作为引用。我的代码如下所示:

public partial class MyForm<T> : Form
{
public MyForm()
{
InitializeComponent();

myListUserControl1.ItemSelected += MyListUserControl1_ItemSelected;
}

private void MyListUserControl1_ItemSelected(T selectedItem)
{
myDetailsUserControl1.SelectItem(selectedItem);
}

internal void InitializeData(List<T> items)
{
myListUserControl1.SetList(items);
myDetailsUserControl1.SetList(items);
}
}

显示列表的用户控件:

public partial class MyListUserControl<T> : XtraUserControl
{
public delegate void ItemSelectedEventHandler(T selectedItem);
public event ItemSelectedEventHandler ItemSelected;
public MyListUserControl()
{
InitializeComponent();
}

public void SetList(List<T> items)
{

gridControl1.DataSource = items;
}

private void gridView1_FocusedRowChanged(object sender, DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs e)
{
var item = GetSelectedItem();
if (ItemSelected != null)
ItemSelected(item);
}

private T GetSelectedItem()
{
return (T)Convert.ChangeType(gridView1.GetRow(gridView1.FocusedRowHandle), typeof(T));
//return gridView1.GetRow(gridView1.FocusedRowHandle) as Animal;
}
}

用于显示所选项目详细信息的用户控件:

public partial class MyDetailsUserControl<T> : XtraUserControl
{
private List<T> items;
public MyDetailsUserControl()
{
InitializeComponent();
}

internal void SetList(List<T> _items)
{
items = _items;
}

internal void SelectItem(T selectedItem)
{
if (IsAnimal(selectedItem))
{
textName.Text = (selectedItem as Animal).ThingName;
textAge.Text = ((selectedItem as Animal).Age).ToString();
}
else
{
textName.Text = (selectedItem as Person).ThingName;
textAge.Text = ((selectedItem as Person).Age).ToString();
}
}

public bool IsAnimal(T item)
{
Animal a = item as Animal;
if (a == null)
return false;

return true;
}
}

类:

public class Animal
{
public Animal() { }
public enum AnimalType { Dog, Shark, Cat};
public string ThingName { get; set; }
public int Age { get; set; }
public AnimalType Type { get; set; }
}

public class Person
{
public Person() { }
public string ThingName { get; set; }
public int Age { get; set; }
}

现在我想知道使用变量的最佳方式是什么,例如在 MyDetailsUserControlSelectItem 函数中。经过大量谷歌搜索后,我想到了两种方法,但我不确定哪一种更好以及为什么。

  1. 与我现在拥有的类似,在需要它们的函数中使用 if/else。也许在初始化表单时设置一个枚举类型,以便更容易地访问它是哪种类型。

  2. MyForm 创建派生表单,例如 MyAnimalFormMyPersonForm,然后在 中有类似虚函数的东西在派生表单中被覆盖的 MyForm。但这也需要我制作用户控件的派生版本,所以感觉有点多余,因为我只需要表单为两种类型工作。

我在 MyListUserControlGetSelectedItem 函数中返回类型的方式也有问题,有更好的方法吗?

最佳答案

正如 Chris 在评论中提到的,您绝对应该:

或者为 Animal 和 person 共享的属性创建一个基类。

 public class LivingThing
{
public string ThingName { get; set; }
public int Age { get; set; }
}

public class Animal : LivingThing
{
public Animal() { }
public enum AnimalType { Dog, Shark, Cat};
public AnimalType Type { get; set; }
}

public class Person : LivingThing
{
public Person() { }
}

当你声明泛型时必须限制为这个新的基本类型

public partial class MyDetailsUserControl<T> : XtraUserControl ) where T : LivingThing

或者你可以创建一个接口(interface)ILivingThing

public interface ILivingThing
{
string ThingName { get; set; }
int Age { get; set; }
}

public class Animal : ILivingThing
{
public Animal() { }
public enum AnimalType { Dog, Shark, Cat};
public AnimalType Type { get; set; }
public string ThingName { get; set; }
public int Age { get; set; }
}

public class Person : ILivingThing
{
public Person() { }
public string ThingName { get; set; }
public int Age { get; set; }
}

并以同样的方式添加限制必须限制为这个新的基本类型

public partial class MyDetailsUserControl<T> : XtraUserControl ) where T : ILivingThing

当然,您应该为 LivingThing 找到一个正确且充分的名称

关于c# - 我应该如何在通用类/表单中使用变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49382157/

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