WpfDesigner
WpfDesigner copied to clipboard
The WPF Designer from SharpDevelop
The standard way VS handles drawing a new element on top of something that doesn't have a content property, say like a image on top of an image, is that...
It should worke like https://github.com/jogibear9988/transformbox
I find something memory leak when i call UnloadDesigner inDesignSurface
- [ ] Rework Rotating/Skewing (maybe use Code from https://github.com/jogibear9988/transformbox (MIT)) - [ ] Drag Controls to Transparent Containers - [ ] DesignTime Collection Editor should support NewItemTypes Attribute (maybe...
In our application we use the following code to initialize a DesignSurface: ```cs using (var xmlReader = XmlReader.Create(new StringReader(XamlText))) { var settings = new XamlLoadSettings(); DesignSurface.LoadDesigner(xmlReader, settings); } ``` When...
getting error while build wpfdesigner Error MSB3644 The reference assemblies for .NETFramework,Version=v4.5 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget...
@jogibear9988 Hi, do you have any examples of using this? Even a few code snippets or screenshots without explanations would help me get going. Thank you
``` public class MyControl : Control { ... protected override void OnRenderSizeChanged(SizeChangedInfo sizeInfo) { base.OnRenderSizeChanged(sizeInfo); if (DesignerProperties.GetIsInDesignMode(this)) { AdornerLayer adornerLayer = AdornerLayer.GetAdornerLayer(this);//Not referenced to an instance(Occurs when a drag operation...
With a 4K screen, wrapping an object (e.g., textBlock) in a ViewBox that's set to NaN for height/width and stretch, the drag-and-drop controls grow excessively in size. If a height...
Hello, how do I use this, I installed this via nuget, now how do I use C# to call wpf form to draw the interface