I am developing a smart tag for one of my WPF controls. The smart tag is added through an AdornerProvider in the design dlls of the control. What I want to do is to synchronize the zoom level of my smart tag and the Visual Studio designer, because if I zoom in/out the Visual Studio designer, the smart tag remains unchanged. Anyone got an idea?
Share
private DesignerView Designer
{
get
{
return DesignerView.FromContext(this.Context);
}
}