簡體   English   中英

不使用畫布C#繪制線條的最佳方法

[英]Best way to draw a line without using a canvas C#

我想知道從列表中以最大值繪制一條線的最佳方法是不使用畫布嗎?

我已經確定了最大,最小和中位數,我想知道在不使用畫布的情況下繪制線/點的最佳方法是什么?

public partial class SpectrumControl : UserControl
{
    private double Highest;
    private double Minimum;
    private double Median;
    private int Total;
    private int CellWidth;

    public int Width { get; set; }

    public SpectrumControl()
    {

        InitializeComponent();
    }

    public void Bind(KLayer klayer)
    {
        if (Width == 0)
        {
            Width = 300;
        }

        Highest = klayer.Values.Max();
        Minimum = klayer.Values.Min();
        Median = ((Highest - Minimum) / 2) + Minimum;
        Total = klayer.Values.Count;
        CellWidth = Width / Total;
        int rowNumber = 0;
        foreach (var item in klayer.Values)
        {
            var label = CreateLabel(item, rowNumber);
            Color backgroundColour = GetColour(item);
            stk1.Children.Add(label);
            rowNumber++;
        }
    }

    private Label CreateLabel(double item, int rowNumber)
    {

        var label = new Label()
        {
            Background = new SolidColorBrush(GetColour(item)),
            Width = CellWidth
        };
        return label;

    }

    private Color GetColour(double item)
    {
        byte a = Convert.ToByte(GetTransparency(item)*255);
        Color backgroundColour;
        if (item < Median)
        {
            backgroundColour = Color.FromArgb(a, 128, 128, 255);
        }
        else if (item > Median)
        {
            backgroundColour = Color.FromArgb(a, 255, 128, 128);
        }
        else
        {
            backgroundColour = Colors.White;
        }

        return backgroundColour;
    }

    private double GetTransparency(double item)
    {
        double x = Highest - Minimum;
        double difference;
        if (item > Median)
        {
            difference = item - Median;
        }
        else
        {
            difference = Median - item;
        }

        var fraction = difference / x;
        return fraction;
    }
}

好吧,假設您將要使用諸如GridPanel類的GridPanel或其他面板,實際上,您可以這樣做:

var line = new Line();
line.Stroke = System.Windows.Media.Brushes.LightSteelBlue;
line.X1 = 1;
line.X2 = 50;
line.Y1 = 1;
line.Y2 = 50;
line.HorizontalAlignment = HorizontalAlignment.Left;
line.VerticalAlignment = VerticalAlignment.Center;
line.StrokeThickness = 2;
grid.Children.Add(line);

在XAML中也可以實現相同的目的,但是您似乎更喜歡在后台代碼中工作,所以這就是我在此處發布的內容。

參考: https : //msdn.microsoft.com/zh-cn/library/system.windows.shapes.line%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396

不過,我不確定您為什么要避免使用畫布(嗯,為什么有人告訴您這樣做)。 我已經使用畫布創建了很多圖。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM