-
Notifications
You must be signed in to change notification settings - Fork 0
AvoidSmall
Nonki Takahashi edited this page Apr 24, 2017
·
2 revisions
Use following workaround to avoid drawing rectangle/ellipse smaller issue on browser with Silverlight environment.
GraphicsWindow.PenWidth = pw
If silverlight Then ' on browser environment
GraphicsWindow.DrawRectangle(x - pw / 2, y - pw / 2, width + pw, height + pw)
Else ' on desktop environment
GraphicsWindow.DrawRectangle(x, y, width, height)
EndIf
Copyright © 2017-2019 Nonki Takahashi.
This work is licensed under a Creative Commons Attribution 4.0 International License.