LinearGradientBrush.SetSigmaBellShape Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Crea un falloff sfumato basato su una curva a forma di campana.
Overload
SetSigmaBellShape(Single) |
Crea un falloff sfumato basato su una curva a forma di campana. |
SetSigmaBellShape(Single, Single) |
Crea un falloff sfumato basato su una curva a forma di campana. |
SetSigmaBellShape(Single)
- Origine:
- LinearGradientBrush.cs
- Origine:
- LinearGradientBrush.cs
- Origine:
- LinearGradientBrush.cs
- Origine:
- LinearGradientBrush.cs
- Origine:
- LinearGradientBrush.cs
Crea un falloff sfumato basato su una curva a forma di campana.
public:
void SetSigmaBellShape(float focus);
public void SetSigmaBellShape (float focus);
member this.SetSigmaBellShape : single -> unit
Public Sub SetSigmaBellShape (focus As Single)
Parametri
- focus
- Single
Valore compreso tra 0 e 1 che specifica il centro della sfumatura (il punto in cui il colore iniziale e il colore finale vengono mescolati equamente).
Esempio
Per un esempio, vedere SetSigmaBellShape.
Commenti
Questo metodo specifica un focus
, ovvero il punto in cui la sfumatura è composta solo dal colore finale. Il parametro focus
rappresenta una posizione come percentuale della distanza lungo la linea sfumata. La sfumatura scende al colore iniziale in base a una forma a curva a campana (distribuzione normale) su entrambi i lati.
Si applica a
SetSigmaBellShape(Single, Single)
- Origine:
- LinearGradientBrush.cs
- Origine:
- LinearGradientBrush.cs
- Origine:
- LinearGradientBrush.cs
- Origine:
- LinearGradientBrush.cs
- Origine:
- LinearGradientBrush.cs
Crea un falloff sfumato basato su una curva a forma di campana.
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)
Parametri
- focus
- Single
Valore compreso tra 0 e 1 che specifica il centro della sfumatura (il punto in cui la sfumatura è composta solo dal colore finale).
- scale
- Single
Valore compreso tra 0 e 1 che specifica la velocità con cui i colori cadono dalla focus
.
Esempio
L'esempio di codice seguente è progettato per l'uso con Windows Form e richiede PaintEventArgse
, un oggetto evento OnPaint. Il codice esegue le azioni seguenti:
Crea un nuovo LinearGradientBrush.
Usa questo pennello per disegnare un'ellisse sullo schermo con una transizione lineare da sinistra a destra dei colori.
Trasforma il LinearGradientBrush in modo da avere una curva a forma di campana con il suo picco al centro.
Disegna un secondo ellisse sullo schermo utilizzando il pennello a forma di campana.
Si noti che la sfumatura dell'ellisse inferiore passa dal blu al rosso e quindi torna al blu.
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
Commenti
Questo metodo specifica un focus
, ovvero il punto in cui la sfumatura è composta solo dal colore finale. Il parametro focus
rappresenta una posizione come percentuale della distanza lungo la linea sfumata. La sfumatura scende al colore iniziale in base a una forma a curva a campana (distribuzione normale) su entrambi i lati.