我的模型如下
OxyPlot.Wpf.PlotView pv = new OxyPlot.Wpf.PlotView();
OxyPlot.PlotModel pm = new OxyPlot.PlotModel();
pv.Height = 300;
pv.Width = 500;
pv.Background = Brushes.Red;
pm.Title = "Test";
pm.Series.Add(new OxyPlot.Series.FunctionSeries(Math.Cos, 0, 10, 0.1, "cos(x)"));
pv.Model = pm;
canvas.Children.Add(pv);
然后我有一个接口和实现类,如下所示的Businesslogic类。
XamlWriter.Save(canvas);
public class TestModel
{
public string SE { get; set; }
}
我的业务逻辑类,我在其中绑定数据库中的数据或有时手动绑定
public interface ITest
{
List<TestModel> SE();
}
我的控制器
public class Test : ITest
{
public List<TestModel> SE()
{
SEBLL B=new SEBLL();
List<TestModel> lstSeries = new List<TestModel>();
lstSeries = B.SE();
return lstSeries;
}
}
最后这是普通的打字视图。
public class SEBLL
{
public List<TestModel> SE()
{
List<TestModel> e = new List<TestModel>();
e.Add(new TestModel{ SE = "A" });
e.Add(new TestModel{ SE = "B" });
return e;
}
}
我需要同时取消选中两个单选按钮。
我对MVC有点陌生,单选按钮列表中填充了2个值,但是在最初加载视图时始终会选择任何值。我尝试设置选中的html属性,但没有帮助。
请让我知道我在整个过程中哪里出了问题。 如果我遵循错误的流程,也可以通过此过程来纠正我。