mathiassimmack
757391035b
see last commit, here are the missing pieces
12 years ago
mathiassimmack
d102150698
new ToolNotFoundDialog if HelpLibManager is not installed, rewritten debug messages, Help 3.0 renamed into HelpViewer (debug msgs)
12 years ago
Christoph Wille
36f38bf456
Update 4.5.1 Developer Pack URL to RTM version of download
12 years ago
Siegfried Pammer
13b2b3a7f9
fix exception handler in case of errors while deleting a directory from a SVN repository.
12 years ago
Siegfried Pammer
4e43caa38f
Update SharpSVN to 1.8 beta
12 years ago
Siegfried Pammer
b8652b7369
Merge pull request #72 from jogibear9988/WPFDesignerFixes
...
Wpf designer fixes & Extensions
12 years ago
Matt Ward
4f618c4e46
Update NuGet to version 2.7.1
...
NuGet.Core version 2.7.40911.225
12 years ago
Matt Ward
93e01cceae
Update IronPython to version 2.7.4
12 years ago
Matt Ward
195fa858a7
Launch html page with software dependencies after install.
12 years ago
jkuehner
77bb8e480a
Layout Rounding Design Time Property
...
Expression Blend sets this Property sometimes
12 years ago
jkuehner
d267d43428
Outline Node.
...
Show Children of for Example AvalonDock2 in Outline Node
12 years ago
jkuehner
f8c08d5b0d
Fix in design Panel -> element was null
12 years ago
jkuehner
b2655efc5b
* Proportional Resize when pressing Ctrl
12 years ago
jogibear9988
ccd532ab86
Outline view : Filtering & Scroll Selected Control into View on Design Area
12 years ago
jogibear9988
2194f16822
Xaml Designer:
...
- Support IsLocked Design Time Property
- Support Filtering in Outline View
12 years ago
Siegfried Pammer
3a2d44b13a
update version to 4.4
12 years ago
Siegfried Pammer
c4e92eb516
add support for XML-Doc located in 4.5 and 4.5.1 .NET frameworks
12 years ago
Siegfried Pammer
64cfb62ab6
fix F1 context help on enum types
12 years ago
Siegfried Pammer
445d246f37
Merge pull request #71 from gumme/NamescopeFixes
...
Fixed namescope problems in WPF Designer
12 years ago
Siegfried Pammer
363eacbd5e
Merge pull request #70 from gumme/WpfDesignerFixes
...
Wpf designer fixes
12 years ago
Siegfried Pammer
969cd958ce
Merge pull request #69 from jogibear9988/master
...
A few Small fixes for the WPF Designer
12 years ago
Siegfried Pammer
718c577f50
fix WPF Designer unit test
12 years ago
Siegfried Pammer
973feaad7f
Merge pull request #68 from gumme/WpfDesignerUnitTests
...
Wpf designer unit tests
12 years ago
gumme
0516cd1b75
Added test for testing generated names for pasted element copies and that the new names is registered in the correct namescope.
12 years ago
gumme
fe0e8c045a
Fixes the following in RegisterXamlComponentRecursive method (called for example on Paste):
...
- Getting the correct namescope for RootItem (the INameScope case was not checked).
- Clears the local namescope for the object if it exists, otherwise name changes will be registered in the local namespace instead of RootItem document namespace.
- Only adds _Copy (or CopyX, where X is an integer) if the previous name did not already end with _Copy. This prevents names as "myname_Copy_Copy_Copy..." to occur when copying and pasting already copied elements.
- Registers the new name to the RootItem namescope, only setting site.Name is not enough as its not yet a part of the RootItem document namescope.
12 years ago
gumme
2e0026d59c
Movement of a control is now only possible if the control is visible.
...
Previously you could move an element that was hidden by hovering the cursor on the edges of the hidden control, and clicking when you saw the move-cursor appear.
12 years ago
gumme
e7cdfc0e3a
Some fixes to BorderForInvisibleControl adorner as follows;
...
Only shows the adorner panel if the parent component is visible.
If component is a ContentControl it must be of type ContentControl specifically, and not derived types like Label and Button where the added border is not wanted.
If component is a Border the adorner border is only drawn on the edges that is invisible.
The adorner is only created the first time it is added to adorners collection.
12 years ago
jogibear9988
3112e412f1
Scroll Selected OutLine Node Into View
12 years ago
gumme
75dc74620c
Using filter to ignore invisible elements in hit testing on design surface.
12 years ago
gumme
f1da926bee
Added tests for testing property values set as element, with proper prefix for types outside default XML-namespace.
12 years ago
gumme
ee33a1c6d6
Added tests for testing that property values are written correctly as attribute in XAML; namespace prefix should only be used for attached properties, and prefix should be generated and added if not already present.
12 years ago
gumme
07c44c9870
Added namespace tests to test XML-namespaces that is added automatically in the document root when controls or types outside the default XML-namespace is used.
12 years ago
gumme
0b59cb78ae
Fixed ignored SetPropertyTests; Must set the property value on the DesignItem representing the object, otherwise the value will not get written to XAML.
12 years ago
gumme
f4a283ff9b
Added unit test for using SolidColorBrush as a resource. This also tests that the inner text of an XML element is only set if the element type defines a Content property.
12 years ago
jkuehner
e64135beef
Default Placement should also work for Control, because it could have a Content Property
...
(when the ContentPropertyAttribute is set)
With this Change you can DragDrop a for Example a PieSeries into the Chart Control from the WPF Toolkit
12 years ago
Siegfried Pammer
21a4a3349b
fix http://community.sharpdevelop.net/forums/t/19403.aspx - MIME Type detection throws COM Exception on 2-byte (non-Unicode) files
12 years ago
Siegfried Oleg Pammer
463ee0248a
Merge pull request #63 from jogibear9988/master
...
Fix Unit Tests -> ListBox is a ItemsControl and can now get Content!
12 years ago
Matt Ward
2f2d22f3c6
Do not clear cached images from file system when resources change.
12 years ago
Matt Ward
31e96db276
Minor code reformat.
12 years ago
Michael Seeger
1cb4e87fdb
FileIconService added to allow custom template icons to be loaded from the file system.
12 years ago
jkuehner
a6b6e44fbb
x:name does not set the name property of a Control.
...
Now also Code like this:
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation "
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml ">
<Canvas>
<Button x:Name="aa"
Content="{Binding Name, ElementName=aa}"
Width="75.2"
Height="23.2"
Canvas.Left="85.6"
Canvas.Top="197.6" />
</Canvas>
</Window>
works!
12 years ago
jkuehner
9cf2257f18
Fix Unit Tests -> ListBox is a ItemsControl and can now get Content!
12 years ago
Siegfried Oleg Pammer
604696c83e
Merge pull request #62 from jogibear9988/master
...
Again 2 small fixes for XAML Designer
12 years ago
Matt Ward
6641a37b67
Update NuGet.exe to 2.7.40809.172
...
This version does not have Visual Studio specific
messages when using package restore.
12 years ago
jkuehner
05ddcf4275
Items Control can also be a Control container, so allow Placement in it!
12 years ago
jkuehner
085945326b
Fix a Null Ref Exception in Thumbnail View
...
(happend for Example on wrong XAML Code)
12 years ago
Matt Ward
e2b05442f7
Support restoring NuGet packages.
...
Add Restore Packages menu item which executes "NuGet.exe restore"
to restore all packages in the solution.
12 years ago
Matt Ward
2c6d2f6468
Fix forms designer error when non .NET assembly referenced by project.
12 years ago
Siegfried Oleg Pammer
6e8e02860f
Merge pull request #61 from jogibear9988/master
...
XAML Designer fixes...
12 years ago
Matt Ward
41e0c5bea5
Fix Python forms designer.
...
The Python forms designer was walking code after the
InitializeComponents and if this code tried to create an
instance of the form it would fail. Now the forms
designer only walks the code inside the InitializeComponents.
12 years ago