我正在尝试编辑编辑中显示的选定行中的所有行,但也按以下格式分组:
注意:[] 代表复选框,在数据库中为 true 或 false
A. 您在服用以下药物时是否有这些症状?
Yes No Sometimes Not Sure After 21 days Indifferent
(i) 扑热息痛 [] [] [] [] [] [] ...
(ii) Quninne [] [] [] [] [] [] ...
B. 用冷水和以下药物一起使用时,您的眼睛会闪烁吗?
Yes No Sometimes Not Sure After 21 days Indifferent
(i) 维生素 C [] [] [] [] [] [] ...
(ii) Quninne [] [] [] [] [] [] ,,,
我的 POCO 设计是这样的:
public class QuestionCategory
{
public int QuestionCategoryID {get; set;}
public string Name {get; set;}
...
}
public class Question
{
public int ID {get; set;}
public string Name {get; set;}
public int QuestionCategoryID {get; set;}
...
}
在视图中
我可以按 QuestionCategoryID 对问题进行分组,现在的问题是如何列出所有问题并单击一个按钮进行编辑。
所以我决定制作一个我想要实现的线框。
慕森王
相关分类