当前位置: 首页>>代码示例>>C#>>正文


C# Rect.Intersect方法代码示例

本文整理汇总了C#中System.Windows.Rect.Intersect方法的典型用法代码示例。如果您正苦于以下问题:C# Rect.Intersect方法的具体用法?C# Rect.Intersect怎么用?C# Rect.Intersect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Windows.Rect的用法示例。


在下文中一共展示了Rect.Intersect方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: intersectExample1

private Rect intersectExample1()
{
    // Initialize new rectangle.
    Rect myRectangle = new Rect();

    // The Location property specifies the coordinates of the upper left-hand 
    // corner of the rectangle. 
    myRectangle.Location = new Point(10, 5);

    // Set the Size property of the rectangle with a width of 200
    // and a height of 50.
    myRectangle.Size = new Size(200, 50);

    // Create second rectangle to compare to the first.
    Rect myRectangle2 = new Rect();
    myRectangle2.Location = new Point(0, 0);
    myRectangle2.Size = new Size(200, 50);

    // Intersect method finds the intersection between the current rectangle and the 
    // specified rectangle, and stores the result as the current rectangle. If no 
    // intersection exists, the current rectangle becomes the Empty rectangle. 
    // myRectangle now has a size of 190,45 and location of 10,5. 
    myRectangle.Intersect(myRectangle2);

    // myRectangle has been changed into the intersection area between the old myRectangle
    // and myRectangle2 (new size of 190,45 and new location of 10,5).
    return myRectangle;
}
开发者ID:.NET开发者,项目名称:System.Windows,代码行数:28,代码来源:Rect.Intersect

示例2: intersectExample2

private Rect intersectExample2()
{
    // Initialize new rectangle.
    Rect myRectangle = new Rect();

    // The Location property specifies the coordinates of the upper left-hand 
    // corner of the rectangle. 
    myRectangle.Location = new Point(10, 5);

    // Set the Size property of the rectangle with a width of 200
    // and a height of 50.
    myRectangle.Size = new Size(200, 50);

    // Create second rectangle to compare to the first.
    Rect myRectangle2 = new Rect();
    myRectangle2.Location = new Point(0, 0);
    myRectangle2.Size = new Size(200, 50);

    // Intersect method finds the intersection between the specified rectangles and 
    // returns the result as a Rect. If there is no intersection then the Empty Rect 
    // is returned. resultRectangle has a size of 190,45 and location of 10,5. 
    Rect resultRectangle = Rect.Intersect(myRectangle, myRectangle2);

    return resultRectangle;
}
开发者ID:.NET开发者,项目名称:System.Windows,代码行数:25,代码来源:Rect.Intersect


注:本文中的System.Windows.Rect.Intersect方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。