BoundsRules omezit tvar umístění a velikost
A Pravidlo hranice je třída, která definuje omezení velikosti a umístění obrazce.Poskytuje způsob, který je volán opakovaně, zatímco uživatel je přetažením obrazce nebo rohy nebo strany obrazce.
Následující příklad omezuje obdélníkového tvaru, bude panel s pevnou velikost vodorovné nebo svislé.Když uživatel přetáhne rohy nebo strany, převrátí obrys mezi dvě konfigurace povolené výšky a šířky.
Pravidlo hranice třídy odvozené od BoundsRules.Je vytvořena instance pravidla ve tvaru:
using Microsoft.VisualStudio.Modeling.Diagrams; ...
public partial class BarShape
{
/// <summary>
/// Rule invoked when the user is resizing a shape.
/// </summary>
public override BoundsRules BoundsRules
{ get { return new BarBoundsRule(); } }
}
/// <summary>
/// Rule invoked when the user is changing a shape's outline.
/// Provides real-time mouse rubber-band feedback, so must work fast.
/// </summary>
public class BarBoundsRule: BoundsRules
{
public override RectangleD GetCompliantBounds
(ShapeElement shape, RectangleD proposedBounds)
{
double thickness = 0.1;
if (proposedBounds.Height > proposedBounds.Width)
{
// There is a minimum width for a shape; the width
// will actually be set to the lesser of
// thickness and that minimum.
return new RectangleD(proposedBounds.Location,
new SizeD(thickness, proposedBounds.Height));
}
else
{
// There is a minimum height for a shape; the
// height will actually be set to the lesser of
// thickness and that minimum.
return new RectangleD(proposedBounds.Location,
new SizeD(proposedBounds.Width, thickness));
} } }
Všimněte si, že umístění a velikost lze omezen, pokud chcete.