2

私はWPFフォームとwinformsを持っているアプリケーションを実行しています。WPFでクールな背景グラデーションを作成しましたが、Windowsフォームでも使用するために必要です。このコードで試しましたが、機能しません。Windowsフォームでグラデーションを描画しますが、WPFのものとは異なります。

WPFのコードは次のとおりです。

<Grid.Background>
        <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
            <GradientStop Color="#FFFCFEFF" Offset="0" />
            <GradientStop Color="#FFA6BAD0" Offset="1" />
            <GradientStop Color="#FFE4EFF7" Offset="0.317" />
            <GradientStop Color="#FFC8D4E3" Offset="0.585" />
            <GradientStop Color="#FFB1C6D7" Offset="0.797" />
            <GradientStop Color="#FFF7FBFD" Offset="0.146" />
            <GradientStop Color="#FFD9E4EE" Offset="0.439" />
        </LinearGradientBrush>
    </Grid.Background>

そしてここに私のWinformコード(色は同じです):

public void Form_Background(object sender, PaintEventArgs e)
    {
        Color c1 = Color.FromArgb(255, 252, 254, 255);
        Color c2 = Color.FromArgb(255, 247, 251, 253);
        Color c3 = Color.FromArgb(255, 228, 239, 247);
        Color c4 = Color.FromArgb(255, 217, 228, 238);
        Color c5 = Color.FromArgb(255, 200, 212, 217);
        Color c6 = Color.FromArgb(255, 177, 198, 215);
        Color c7 = Color.FromArgb(255, 166, 186, 208);

        LinearGradientBrush br = new LinearGradientBrush(this.ClientRectangle, Color.Black, Color.Black, 0, false);
        ColorBlend cb = new ColorBlend();
        cb.Positions = new[] { 0, (float)0.146, (float)0.317, (float)0.439, (float)0.585, (float)0.797 , 1};
        cb.Colors = new[] { c1, c2, c3, c4, c5, c6, c7 };
        br.InterpolationColors = cb;

        // rotate
        br.RotateTransform(90);

        // paint
        e.Graphics.FillRectangle(br, this.ClientRectangle);
    }

皆さんが私を助けてくれることを願っています。私はこれを非常に速く解決する必要があり、画像の背景を使用したり、WinFormにWPFコントロールを配置したりしたくありません。

ご協力いただきありがとうございます!

4

1 に答える 1

1

違いのスクリーンショットが含まれていないため、これが正確に得られるかどうかはわかりませんが、突き刺します:

public void Form_Background(object sender, PaintEventArgs e)
    {
        Color c1 = Color.FromArgb(255, 252, 254, 255);
        Color c2 = Color.FromArgb(255, 247, 251, 253);
        Color c3 = Color.FromArgb(255, 228, 239, 247);
        Color c4 = Color.FromArgb(255, 217, 228, 238);
        Color c5 = Color.FromArgb(255, 200, 212, 217);
        Color c6 = Color.FromArgb(255, 177, 198, 215);
        Color c7 = Color.FromArgb(255, 166, 186, 208);

        // Changed: c1 / c7 as start colors, and at 90 degrees.  Removed later transform.
        LinearGradientBrush br = new LinearGradientBrush(this.ClientRectangle, c1, c7, 90, true);
        ColorBlend cb = new ColorBlend();
        cb.Positions = new[] { 0, (float)0.146, (float)0.317, (float)0.439, (float)0.585, (float)0.797, 1 };
        cb.Colors = new[] { c1, c2, c3, c4, c5, c6, c7 };
        br.InterpolationColors = cb;

        // removed rotate call

        // paint
        e.Graphics.FillRectangle(br, this.ClientRectangle);
    }

XAML デザイナーを WinForms 出力と比較すると、これはほぼ正しいように見えます (XAML デザイナーは左、WinForms アプリを実行している右): グラデーション

于 2012-12-05T01:48:22.513 に答える