LinearGradientBrush.SetSigmaBellShape 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
根據鐘形曲線建立漸層下降。
多載
SetSigmaBellShape(Single) |
根據鐘形曲線建立漸層下降。 |
SetSigmaBellShape(Single, Single) |
根據鐘形曲線建立漸層下降。 |
SetSigmaBellShape(Single)
根據鐘形曲線建立漸層下降。
public:
void SetSigmaBellShape(float focus);
public void SetSigmaBellShape (float focus);
member this.SetSigmaBellShape : single -> unit
Public Sub SetSigmaBellShape (focus As Single)
參數
- focus
- Single
從 0 到 1 的值,指定漸層的中心(開始色彩和結束色彩的點相同)。
範例
如需範例,請參閱 SetSigmaBellShape.
備註
這個方法會指定 focus
,這是漸層只由結束色彩組成的點。
focus
參數會以漸層線條的距離比例來表示位置。 漸層會根據鈴鐺曲線形狀(常態分佈)下降到任一側的開始色彩。
適用於
SetSigmaBellShape(Single, Single)
根據鐘形曲線建立漸層下降。
public:
void SetSigmaBellShape(float focus, float scale);
public void SetSigmaBellShape (float focus, float scale);
member this.SetSigmaBellShape : single * single -> unit
Public Sub SetSigmaBellShape (focus As Single, scale As Single)
參數
- focus
- Single
從 0 到 1 的值,指定漸層的中心(漸層只由結束色彩組成的點)。
- scale
- Single
從 0 到 1 的值,指定色彩從 focus
下降的速度。
範例
下列程式代碼範例的設計目的是要與 Windows Forms 搭配使用,而且需要 PaintEventArgse
OnPaint 事件物件。 程式代碼會執行下列動作:
建立新的 LinearGradientBrush。
使用此筆刷將橢圓形繪製到具有色彩線性、由左至右轉換的畫面。
轉換 LinearGradientBrush,使鐘形曲線及其尖峰在中心。
使用鐘形筆刷將第二個省略號繪製到螢幕。
請注意,下橢圓形的漸層會從藍色轉換為紅色,然後切換回藍色。
private:
void SetSigmaBellShapeExample( 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 bell-shaped brush with the peak at the
// center of the drawing area.
myLGBrush->SetSigmaBellShape( .5f, 1.0f );
// Use the bell- shaped brush to draw a second
// ellipse.
myRect.Y = 150;
e->Graphics->FillEllipse( myLGBrush, myRect );
}
private void SetSigmaBellShapeExample(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 bell-shaped brush with the peak at the
// center of the drawing area.
myLGBrush.SetSigmaBellShape(.5f, 1.0f);
// Use the bell- shaped brush to draw a second
// ellipse.
myRect.Y = 150;
e.Graphics.FillEllipse(myLGBrush, myRect);
}
Public Sub SetSigmaBellShapeExample(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.SetSigmaBellShape(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
參數會以漸層線條的距離比例來表示位置。 漸層會根據鈴鐺曲線形狀(常態分佈)下降到任一側的開始色彩。