gumme
|
f1da926bee
|
Added tests for testing property values set as element, with proper prefix for types outside default XML-namespace.
|
12 years ago |
Peter Forstmeier
|
0ea5b66e3e
|
Change PageBreak to new DataPageBuilder.cs
|
12 years ago |
Siegfried Pammer
|
9cce5d9369
|
implement GetMethodsFromDocumentPosition and set breakpoints in all methods (lambdas, etc.) in that location
|
12 years ago |
Siegfried Pammer
|
59efcb8964
|
reimplement drag&drop of watches from the editor
|
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 |
Andreas Weizel
|
00c368678c
|
ClassBrowser: Opening GAC assemblies by double click.
|
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 |
Andreas Weizel
|
2a5d439dff
|
Adding referenced assemblies to entity model context in AssemblyParserService.GetAssemblyModel().
|
12 years ago |
Peter Forstmeier
|
2f3bfba2e3
|
Add Columns with absolute Position to Container
|
12 years ago |
Dragan
|
584a32e6f8
|
FIX: Duplicate NUnit test results
Prevent dictionary exception on duplicate test results caused by NUnit
TestCaseSource & ValueSource attributes
|
12 years ago |
Peter Forstmeier
|
ae4d494a28
|
DataPageBuilder.cs
|
12 years ago |
Matt Ward
|
75bbd21910
|
Allow Package Management addin tests to be run separately.
|
12 years ago |
Matt Ward
|
5870705edd
|
Fix recent NuGet packages not being saved in settings.
|
12 years ago |
Matt Ward
|
cf1c456d6f
|
Fix position of NuGet menu items when project selected.
|
12 years ago |
Matt Ward
|
80984a870f
|
Merge branch 'master' into newNR
Conflicts:
src/AddIns/Misc/PackageManagement/Project/PackageManagement.addin
src/AddIns/Misc/PackageManagement/Test/Src/PackageManagementOptionsTests.cs
src/Main/Base/Project/ICSharpCode.SharpDevelop.csproj
src/Main/Base/Project/Src/Project/Behaviors/DotNetStartBehavior.cs
src/Main/Base/Project/Src/Services/IconService.cs
src/Main/Base/Test/ICSharpCode.SharpDevelop.Tests.csproj
src/Main/Base/Test/MimeDetectionTests.cs
|
12 years ago |
Peter Forstmeier
|
496aa81a85
|
Rework some UnitTest's
|
12 years ago |
Peter Forstmeier
|
8933d4045b
|
ExpressionVisitor.cs
|
12 years ago |
Peter Forstmeier
|
6c572bac15
|
Cleanup (FxCop)
|
12 years ago |
Peter Forstmeier
|
770eef87c6
|
Use FormattedText to measure Text.
|
12 years ago |
Siegfried Pammer
|
a849a6f938
|
fix ArgumentException occurring when pressing backspace at the start of the document, introduced by ebb5d25c
|
12 years ago |
Siegfried Pammer
|
82862dd7cd
|
fix a caret navigation bug introduced by 35a81d3e
|
12 years ago |
Dragan
|
d17ae0f63c
|
Code Coverage - Nested classes, Compiler Methods
1) Nested classes were omitted from Code Coverage panel
2) Omit compiler generated methods from Code Coverage panel
|
12 years ago |
Siegfried Pammer
|
16e7d7bc26
|
fix insertion of ="" with x:Key or other special completion items
|
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
|
f2c8cd5bed
|
reimplement WatchPad
|
12 years ago |
Dragan
|
9a3aaa5694
|
Merge remote-tracking branch 'upstream/master'
|
12 years ago |
Siegfried Pammer
|
678ce75f0b
|
add type column to tooltips
|
12 years ago |
Siegfried Pammer
|
871022c697
|
add missing command
|
12 years ago |
Siegfried Pammer
|
23af1a7112
|
fix managed detection in AttachToProcessForm
|
12 years ago |
Siegfried Pammer
|
17ddb265d2
|
reimplement context menu for debugger tooltips
|
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 Pammer
|
59744fabfa
|
Merge branch 'newNR' of github.com:icsharpcode/SharpDevelop into newNRILSpyDebugger
|
12 years ago |
Siegfried Pammer
|
8d5347a934
|
fix missing debugger commands
|
12 years ago |
Siegfried Pammer
|
623cc269fa
|
add documentation to GridViewColumnAutoSize and correct position of tooltip for partly visible cells in TaskView
|
12 years ago |
Siegfried Oleg Pammer
|
604696c83e
|
Merge pull request #62 from jogibear9988/master
Again 2 small fixes for XAML Designer
|
12 years ago |
Siegfried Pammer
|
c3dfe8dd2a
|
fix DebuggerProcessEntityContext: each IEntityModelContext needs a specific main or current assembly.
|
12 years ago |
Siegfried Pammer
|
f6dedc1311
|
fix InvalidCastException in CSharpAmbience
|
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 |
Siegfried Pammer
|
704811c7cd
|
add column auto-width property to debugger pads
|
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 |