Christoph Wille
|
38e9db5129
|
Update dotnet.yml for latest build actions
|
2024-07-09 06:43:15 +02:00 |
Jochen Kühner
|
d138a34840
|
Merge pull request #112 from hjqcan/master
Update CreateComponentTool.cs
|
2024-06-20 14:35:01 +02:00 |
hjqcan
|
7de5376126
|
Update PropertyGrid.cs
bug fix for BasicMetadata.Register(); never used.
|
2024-06-20 20:13:21 +08:00 |
hjqcan
|
ffb1d87eec
|
Update CreateComponentTool.cs
fix for breaking change
|
2024-06-03 09:54:50 +08:00 |
hjqcan
|
3249bd7bfc
|
Update CreateComponentTool.cs
fix for breaking change,create a additional constructor without the perameter
|
2024-06-01 15:09:15 +08:00 |
hjqcan
|
bb3faa4419
|
Update CreateComponentTool.cs
1.Allow for the creation of components with parameters
2.Add event when component creation is complete
|
2024-05-31 17:28:07 +08:00 |
Jochen Kühner
|
fc189bcb20
|
Merge pull request #110 from MihailRomanov/add_specialInitializecomponent_to_colorpicker
Add SpecialInitializeComponent() to ColorPicker
|
2024-01-16 14:52:32 +01:00 |
Mihail Romanov
|
c2e7625a31
|
Upgrade NUnit and NUnit3TestAdapter - for work with installed .Net 7
|
2024-01-16 13:00:27 +04:00 |
Mihail Romanov
|
62a27cc31c
|
Add SpecialInitializeComponent to ColorPicker control
|
2024-01-16 12:59:08 +04:00 |
Jochen Kühner
|
18b92a7533
|
Merge pull request #108 from LukeOrdelmans/bugfix/fix-property-changed-event-handler-deregistration-on-rendertransformoriginextension
Bugfix/fix property changed event handler deregistration on RenderTransformOriginExtension
|
2023-11-29 08:16:13 +01:00 |
Luke Ordelmans
|
8ab8159ff4
|
removed unused field from RenderTransformOriginExtension
|
2023-11-29 07:55:19 +01:00 |
Luke Ordelmans
|
4de7d6ce70
|
remove OnPropertyChanged from RenderTransformOriginExtension.ExtendedItem in OnRemove()
|
2023-11-29 07:53:40 +01:00 |
Jochen Kühner
|
0dfcaeb54d
|
Merge pull request #106 from LukeOrdelmans/bugfix/fix-null-reference-on-disconnected-treenode
Fixed a NullReferenceException caused by handling a left mouse click on a child node
|
2023-05-23 12:01:31 +02:00 |
Wilco Boele
|
92292dc0be
|
Fixed a NullReferenceException caused by handling a left mouse click on a treenode that was already disconnected and replaced. This happens when an attribute of an element was changed and directly after that a childnode was clicked in the treeview. The node that was changed will be saved first and all childs will be removed and replaced by updated ones. After that, the mouse click on the removed child will still be executed, but that child is no IOutLineNode anymore and that causes the NullReferenceException.
|
2023-05-23 07:04:47 +02:00 |
jkuehner
|
4f4443973d
|
Merge branch 'master' of https://github.com/icsharpcode/WpfDesigner
|
2023-03-29 12:49:27 +02:00 |
jkuehner
|
20e1bbdc3e
|
need some methods from xamlComponentService as public
|
2023-03-29 12:49:15 +02:00 |
Jochen Kühner
|
e78748106a
|
Merge pull request #105 from LukeOrdelmans/bugfix/UseTypeConverterForConvertingInstanceValues
use type converter for converting instance values when available instead of direct casting
|
2023-03-02 08:17:20 +01:00 |
Luke Ordelmans
|
b3723cca23
|
renamed GetValueOnInstance<T>() to GetConvertedValueOnInstance<T>() to be more explicit about conversion taken place
|
2023-03-02 07:58:50 +01:00 |
Luke Ordelmans
|
c0ccc6e443
|
use GetValueOnInstance<T> instead of direct casting in relevant places
|
2023-03-01 13:20:35 +01:00 |
Luke Ordelmans
|
daf315524d
|
added GetValueOnInstance<T> that uses the TypeConverter defined on the XamlProperty if types are not direct match, this way the user can extend the specific TypeConverter if needed.
|
2023-03-01 13:19:52 +01:00 |
jkuehner
|
21442d0296
|
inline collection needs special code
|
2023-02-03 08:49:30 +01:00 |
jkuehner
|
7a5f906024
|
Merge branch 'master' of https://github.com/icsharpcode/WpfDesigner
|
2023-02-02 15:34:18 +01:00 |
jkuehner
|
da78e249bf
|
bugfix wpf designer with null in texts
|
2023-02-02 15:34:09 +01:00 |
Jochen Kühner
|
12981b37b5
|
Merge pull request #96 from LukeOrdelmans/bugfix/track-outline-nodes-per-context
track/cache outline nodes per DesignContext, so they can be cleaned up
|
2022-12-21 12:11:52 +01:00 |
Luke Ordelmans
|
811c1ae161
|
track/cache outline nodes per DesignContext, so we can cleanup with that DesignContext
|
2022-12-15 09:56:58 +01:00 |
Jochen Kühner
|
d6049349fa
|
Merge pull request #95 from LukeOrdelmans/bugfix/prevent-mainwindow-access-from-different-thread
don't access Application.Current.MainWindow, causes cross-thread-exce…
|
2022-12-13 22:00:50 +01:00 |
Luke Ordelmans
|
f1a05a58d4
|
don't access Application.Current.MainWindow, causes cross-thread-exception in application with multi-threaded UI
|
2022-12-13 09:35:40 +01:00 |
Jochen Kühner
|
56f791bb96
|
Merge pull request #94 from LukeOrdelmans/bugfix/fix-cross-thread-exception
Fixed cross-thread-exception
|
2022-12-12 13:00:33 +01:00 |
Luke Ordelmans
|
cc78cda4f0
|
Fixed cross-thread-exception, static converter instance should return a frozen brush
|
2022-12-12 10:55:52 +01:00 |
Jochen Kühner
|
92dc8cf10d
|
Merge pull request #93 from TeaJAge/master
xml - set namespace for subelements if root namespace is changed
|
2022-12-01 16:36:20 +01:00 |
Thomas Herrmann
|
591180b824
|
xml - set namespace for subelements if root namespace is changed
|
2022-12-01 16:26:29 +01:00 |
Jochen Kühner
|
c7f0ff74e2
|
root should not be copy/pasteable
|
2022-07-08 08:29:43 +02:00 |
Jochen Kühner
|
f05c47095e
|
posibility to override selection service (need in an app, where some parts should not be selectable)
|
2022-07-08 08:22:50 +02:00 |
Jochen Kühner
|
d7554bb437
|
add ISelectionFilterService
|
2022-04-05 09:08:37 +02:00 |
Jochen Kühner
|
4d43ae0adf
|
only select visibible elements via RangeSelectiongesture
|
2022-03-31 14:08:52 +02:00 |
Jochen Kühner
|
06995f27a6
|
bugfix - remove cosloe writeline calls
|
2022-03-07 11:22:27 +01:00 |
Jochen Kühner
|
ddd7a76c32
|
bugfix changegroup handling
|
2022-02-03 18:41:34 +01:00 |
Jochen Kühner
|
60a52c2dbe
|
Merge branch 'master' of https://github.com/icsharpcode/WpfDesigner
|
2022-02-03 14:56:54 +01:00 |
Jochen Kühner
|
a16b4c082f
|
bugfix designer
|
2022-02-03 14:56:03 +01:00 |
Jochen Kühner
|
d089d65bfb
|
Merge pull request #84 from simplic/AssemblyException
Add exception for load assemblies.
|
2022-01-06 15:43:56 +01:00 |
MaxPatyk
|
dc96001f38
|
Add exception for load assemblies.
|
2022-01-06 13:52:40 +01:00 |
Christoph Wille
|
1e1a4ec633
|
Update README
|
2022-01-04 20:11:37 +01:00 |
Jochen Kühner
|
7b5251b796
|
Fix grid Rows/columns editor
|
2022-01-04 17:45:21 +01:00 |
Jochen Kühner
|
018e390254
|
switch to net6
|
2022-01-04 17:27:13 +01:00 |
Jochen Kühner
|
6ea37e9819
|
´refactor after merge, add net6 support
|
2022-01-04 17:23:58 +01:00 |
Jochen Kühner
|
b87b18b8b1
|
Merge pull request #83 from simplic/FlatCollectionCombobox
Add a Combobox in FlatCollectonEditor.
|
2022-01-04 17:04:39 +01:00 |
MaxPatyk
|
18b7e4b690
|
Add a Combobox in FlatCollectonEditor.
|
2022-01-04 16:06:44 +01:00 |
Jochen Kühner
|
807dc11a41
|
increase version in all csproj
|
2021-09-13 12:00:30 +02:00 |
Jochen Kühner
|
051ad8fab2
|
increase minor version
|
2021-09-13 11:58:25 +02:00 |
Jochen Kühner
|
165ce34a85
|
change version
|
2021-09-13 11:57:21 +02:00 |