我目前有一个C#用户控件。 看来我需要改变设计器生成代码的顺序。 应该在图形控制属性之前设置GraphControlMode,因为它负责创建正确的控制器类型。
//
// graphControl2
//
this.graphControl2.Controller.CenterX = ((uint)(623u));
this.graphControl2.Controller.CenterY = ((uint)(492u));
this.graphControl2.Controller.ChartDiameter = ((uint)(834u));
this.graphControl2.Controller.Interval = 100D;
this.graphControl2.Controller.IsNormalized = false;
this.graphControl2.Controller.Pause = false;
this.graphControl2.Controller.Speed = 50D;
this.graphControl2.Controller.TimeElapsed = 0D;
this.graphControl2.Controller.View = livePieGraph1;
this.graphControl2.GraphControlMode = GraphingControl.GraphControl.GraphMode.LIVEPIEGRAPH;
有办法做到这一点吗?
答案 0 :(得分:0)
有什么问题?只需剪切线并将其粘贴到正确的位置即可。它是设计师生成的代码,它仍然是代码,而不是魔术。