كيفية القيام بما يلي: استخدم إصابة اختباره مع المناطق
الغرض من دخول اختبار هو لتحديد ما إذا كان المؤشر هو على كائن معطى، مثل رمز أو زر.
مثال
يلي مثال ينشئ منطقة على شكل علامة زائد عن طريق تشكيل التوحيد لمنطقتي مستطيلة. تفترض التي متغير point يحتوي على الموقع الأحدث انقر فوق. التعليمة البرمجية بالتحقق لمعرفة ما إذا كان point هو في منطقة على شكل علامة زائد. إذا كانت النقطة هو في المنطقة (مكون)، المنطقة هو تعبئة مع فرشاة أحمر غير شفاف. Otherwهوe، المنطقة هو تتم تعبئته باستخدام فرشاة أحمر نصف شفاف.
Dim point As New Point(60, 10)
' Assume that the variable "point" contains the location of the
' most recent mouse click.
' To simulate a hit, assign (60, 10) to point.
' To simulate a miss, assign (0, 0) to point.
Dim solidBrush As New SolidBrush(Color.Black)
Dim region1 As New [Region](New Rectangle(50, 0, 50, 150))
Dim region2 As New [Region](New Rectangle(0, 50, 150, 50))
' Create a plus-shaped region by forming the union of region1 and region2.
' The union replaces region1.
region1.Union(region2)
If region1.IsVisible(point, e.Graphics) Then
' The point is in the region. Use an opaque brush.
solidBrush.Color = Color.FromArgb(255, 255, 0, 0)
Else
' The point is not in the region. Use a semitransparent brush.
solidBrush.Color = Color.FromArgb(64, 255, 0, 0)
End If
e.Graphics.FillRegion(solidBrush, region1)
Point point = new Point(60, 10);
// Assume that the variable "point" contains the location of the
// most recent mouse click.
// To simulate a hit, assign (60, 10) to point.
// To simulate a miss, assign (0, 0) to point.
SolidBrush solidBrush = new SolidBrush(Color.Black);
Region region1 = new Region(new Rectangle(50, 0, 50, 150));
Region region2 = new Region(new Rectangle(0, 50, 150, 50));
// Create a plus-shaped region by forming the union of region1 and
// region2.
// The union replaces region1.
region1.Union(region2);
if (region1.IsVisible(point, e.Graphics))
{
// The point is in the region. Use an opaque brush.
solidBrush.Color = Color.FromArgb(255, 255, 0, 0);
}
else
{
// The point is not in the region. Use a semitransparent brush.
solidBrush.Color = Color.FromArgb(64, 255, 0, 0);
}
e.Graphics.FillRegion(solidBrush, region1);
التحويل البرمجي للتعليمات البرمجية
The preceding example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of PaintEventHandler.
راجع أيضًا:
المهام
كيفية القيام بما يلي: استخدم لقطة مع منطقة