ControlPaint.DrawReversibleLine(Point, Point, Color) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
画面の反転できる線を、指定した開始点と指定したエンド ポイントの間に、指定した背景色を使用して描画します。
public:
static void DrawReversibleLine(System::Drawing::Point start, System::Drawing::Point end, System::Drawing::Color backColor);
public static void DrawReversibleLine (System.Drawing.Point start, System.Drawing.Point end, System.Drawing.Color backColor);
static member DrawReversibleLine : System.Drawing.Point * System.Drawing.Point * System.Drawing.Color -> unit
Public Shared Sub DrawReversibleLine (start As Point, end As Point, backColor As Color)
パラメーター
例
次のコード例では、and Control.PointToScreen メソッドの使用方法をControlPaint.DrawReversibleLine示します。 この例を実行するには、次のコードをフォームに貼り付けます。 フォームに名前を付けた Button3
ボタンを追加し、すべてのイベントがイベント ハンドラーに接続されていることを確認します。
// When the mouse hovers over Button3, two reversible lines are
// drawn using the corner coordinates of Button3, which are first
// converted to screen coordinates.
void Button3_MouseHover( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
ControlPaint::DrawReversibleLine( Button3->PointToScreen( Point(0,0) ), Button3->PointToScreen( Point(Button3->ClientRectangle.Right,Button3->ClientRectangle.Bottom) ), SystemColors::Control );
ControlPaint::DrawReversibleLine( Button3->PointToScreen( Point(Button3->ClientRectangle.Right,Button3->ClientRectangle.Top) ), Button3->PointToScreen( Point(Button1->ClientRectangle.Left,Button3->ClientRectangle.Bottom) ), SystemColors::Control );
}
// When the mouse moves from Button3, the reversible lines are erased by
// using the same coordinates as are used in the Button3_MouseHover method.
void Button3_MouseLeave( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
ControlPaint::DrawReversibleLine( Button3->PointToScreen( Point(0,0) ), Button3->PointToScreen( Point(Button3->ClientRectangle.Right,Button3->ClientRectangle.Bottom) ), SystemColors::Control );
ControlPaint::DrawReversibleLine( Button3->PointToScreen( Point(Button3->ClientRectangle.Right,Button3->ClientRectangle.Top) ), Button3->PointToScreen( Point(Button3->ClientRectangle.Left,Button3->ClientRectangle.Bottom) ), SystemColors::Control );
}
// When the mouse hovers over Button3, two reversible lines are
// drawn using the corner coordinates of Button3, which are first
// converted to screen coordinates.
private void Button3_MouseHover(object sender, System.EventArgs e)
{
ControlPaint.DrawReversibleLine(Button3.PointToScreen(
new Point(0, 0)), Button3.PointToScreen(
new Point(Button3.ClientRectangle.Right,
Button3.ClientRectangle.Bottom)), SystemColors.Control);
ControlPaint.DrawReversibleLine(Button3.PointToScreen(
new Point(Button3.ClientRectangle.Right,
Button3.ClientRectangle.Top)),
Button3.PointToScreen(new Point(Button1.ClientRectangle.Left,
Button3.ClientRectangle.Bottom)), SystemColors.Control);
}
// When the mouse moves from Button3, the reversible lines are erased by
// using the same coordinates as are used in the Button3_MouseHover method.
private void Button3_MouseLeave(object sender, System.EventArgs e)
{
ControlPaint.DrawReversibleLine(Button3.PointToScreen(
new Point(0, 0)), Button3.PointToScreen(
new Point(Button3.ClientRectangle.Right,
Button3.ClientRectangle.Bottom)), SystemColors.Control);
ControlPaint.DrawReversibleLine(Button3.PointToScreen(
new Point(Button3.ClientRectangle.Right,
Button3.ClientRectangle.Top)),
Button3.PointToScreen(new Point(Button3.ClientRectangle.Left,
Button3.ClientRectangle.Bottom)), SystemColors.Control);
}
' When the mouse hovers over Button3, two reversible lines are drawn
' using the corner coordinates of Button3, which are first
' converted to screen coordinates.
Private Sub Button3_MouseHover(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles Button3.MouseHover
ControlPaint.DrawReversibleLine(Button3.PointToScreen(New Point(0, 0)), _
Button3.PointToScreen(New Point(Button3.ClientRectangle.Right, _
Button3.ClientRectangle.Bottom)), SystemColors.Control)
ControlPaint.DrawReversibleLine(Button3.PointToScreen( _
New Point(Button3.ClientRectangle.Right, Button3.ClientRectangle.Top)), _
Button3.PointToScreen(New Point _
(Button1.ClientRectangle.Left, Button3.ClientRectangle.Bottom)), _
SystemColors.Control)
End Sub
' When the mouse moves from Button3, the reversible lines are
' erased by using the same coordinates as are used in the
' Button3_MouseHover method.
Private Sub Button3_MouseLeave(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles Button3.MouseLeave
ControlPaint.DrawReversibleLine(Button3.PointToScreen(New Point(0, 0)), _
Button3.PointToScreen(New Point(Button3.ClientRectangle.Right, _
Button3.ClientRectangle.Bottom)), SystemColors.Control)
ControlPaint.DrawReversibleLine(Button3.PointToScreen( _
New Point(Button3.ClientRectangle.Right, Button3.ClientRectangle.Top)), _
Button3.PointToScreen(New Point(Button3.ClientRectangle.Left, _
Button3.ClientRectangle.Bottom)), SystemColors.Control)
End Sub
注釈
この backColor
パラメーターは、線の塗りつぶしの色を計算して、常に背景に対して表示されるようにするために使用されます。
このメソッドの結果は、同じ線をもう一度描画することで元に戻すことができます。 この方法を使用して線を描画することは、画面の領域を反転させるのと似ていますが、より多様な色のパフォーマンスが向上します。