平滑调整大小和淡化 WP 应用程序

Smooth resizing and fade WP app

我想问你我应该怎么做才能平滑地调整(矩形)大小和淡入淡出(网格)?我正在使用 C#,Visual Studio 2015.

进行某种循环并添加

Brush brush = new SolidBrush(Color.FromArgb(alpha, red, green, blue))

其中 alpha 从 0 到 255,因此 alpha 值为 128 将为您提供 50% 的不透明度。

然后就可以刷了

myRectangle.FillRectangle(brush, new Rectangle(0,0,200,300));