c#为自定义控件扩展用户控件更改Designer生成代码的顺序

时间:2016-04-16 08:14:52

标签: c# controls designer generated

我目前有一个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;

有办法做到这一点吗?

1 个答案:

答案 0 :(得分:0)

有什么问题?只需剪切线并将其粘贴到正确的位置即可。它是设计师生成的代码,它仍然是代码,而不是魔术。