LinearGradientBrush.SetBlendTriangularShape 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立具有中心色彩的線性漸層,以及兩端單一色彩的線性遞減。
多載
SetBlendTriangularShape(Single) |
建立具有中心色彩的線性漸層,以及兩端單一色彩的線性遞減。 |
SetBlendTriangularShape(Single, Single) |
建立具有中心色彩的線性漸層,以及兩端單一色彩的線性遞減。 |
SetBlendTriangularShape(Single)
建立具有中心色彩的線性漸層,以及兩端單一色彩的線性遞減。
public:
void SetBlendTriangularShape(float focus);
public void SetBlendTriangularShape (float focus);
member this.SetBlendTriangularShape : single -> unit
Public Sub SetBlendTriangularShape (focus As Single)
參數
- focus
- Single
從 0 到 1 的值,指定漸層的中心(漸層只由結束色彩組成的點)。
範例
如需範例,請參閱 SetBlendTriangularShape。
備註
這個方法會指定 focus
,這是漸層只由結束色彩組成的點。
focus
參數會以漸層線條的距離比例來表示位置。 漸層會以線性方式下降到任一邊的起始色彩。
適用於
SetBlendTriangularShape(Single, Single)
建立具有中心色彩的線性漸層,以及兩端單一色彩的線性遞減。
public:
void SetBlendTriangularShape(float focus, float scale);
public void SetBlendTriangularShape (float focus, float scale);
member this.SetBlendTriangularShape : single * single -> unit
Public Sub SetBlendTriangularShape (focus As Single, scale As Single)
參數
- focus
- Single
從 0 到 1 的值,指定漸層的中心(漸層只由結束色彩組成的點)。
- scale
- Single
從 0 到 1 的值,指定色彩從開始色彩下降到 focus
的速度(結束色彩)
範例
下列程式代碼範例的設計目的是要與 Windows Forms 搭配使用,而且需要 PaintEventArgse
OnPaint 事件物件。 程式代碼會執行下列動作:
建立新的 LinearGradientBrush。
使用此筆刷將橢圓形繪製到具有色彩線性、由左至右轉換的畫面。
將 LinearGradientBrush 轉換成三角形圖形,其尖峰位於中央。
使用轉換的筆刷,將第二個省略號繪製到畫面。
請注意,下橢圓形的漸層會從藍色轉換為紅色,然後切換回藍色。
private:
void SetBlendTriangularShapeExample( PaintEventArgs^ e )
{
// Create a LinearGradientBrush.
Rectangle myRect = Rectangle(20,20,200,100);
LinearGradientBrush^ myLGBrush = gcnew LinearGradientBrush( myRect,Color::Blue,Color::Red,0.0f,true );
// Draw an ellipse to the screen using the LinearGradientBrush.
e->Graphics->FillEllipse( myLGBrush, myRect );
// Create a triangular shaped brush with the peak at the center
// of the drawing area.
myLGBrush->SetBlendTriangularShape( .5f, 1.0f );
// Use the triangular brush to draw a second ellipse.
myRect.Y = 150;
e->Graphics->FillEllipse( myLGBrush, myRect );
}
private void SetBlendTriangularShapeExample(PaintEventArgs e)
{
// Create a LinearGradientBrush.
Rectangle myRect = new Rectangle(20, 20, 200, 100);
LinearGradientBrush myLGBrush = new LinearGradientBrush(
myRect, Color.Blue, Color.Red, 0.0f, true);
// Draw an ellipse to the screen using the LinearGradientBrush.
e.Graphics.FillEllipse(myLGBrush, myRect);
// Create a triangular shaped brush with the peak at the center
// of the drawing area.
myLGBrush.SetBlendTriangularShape(.5f, 1.0f);
// Use the triangular brush to draw a second ellipse.
myRect.Y = 150;
e.Graphics.FillEllipse(myLGBrush, myRect);
}
Public Sub SetBlendTriangularShapeExample(ByVal e As PaintEventArgs)
' Create a LinearGradientBrush.
Dim myRect As New Rectangle(20, 20, 200, 100)
Dim myLGBrush As New LinearGradientBrush(myRect, Color.Blue, _
Color.Red, 0.0F, True)
' Draw an ellipse to the screen using the LinearGradientBrush.
e.Graphics.FillEllipse(myLGBrush, myRect)
' Create a triangular shaped brush with the peak at the center
' of the drawing area.
myLGBrush.SetBlendTriangularShape(0.5F, 1.0F)
' Use the triangular brush to draw a second ellipse.
myRect.Y = 150
e.Graphics.FillEllipse(myLGBrush, myRect)
End Sub
備註
這個方法會指定 focus
,這是漸層只由結束色彩組成的點。
focus
參數會以漸層線條的距離比例來表示位置。 漸層會以線性方式下降到任一邊的起始色彩。