-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [Introducing] AutoWatermark #2712 This commit introduces the possibility to retrieve the automark text directly from the property that is used for data binding * Add property mapping for controls * Add AttachedPropertyBrowsableForType-Attribute * Add WatermarkAttribute * Add NET4_5 compiler switch * Add example to DateExamples.xaml * Add code to support auto-watermark on <NET4.5 too * Use DisplayAttribute instead of WatermarkAttribute * Use GetDescription instead of Description to support localizable strings * Revert XAML-Style changes introduced by mistake * Code cleanup * Add Dependency Property documentation * Subscribe to event only in case of Autowatermark is true. If control is already loaded, directly call the method for retrieving the information. If deactivated unsubscribe from event. * [Fix] Issue with DOT-binding e.g. "{Binding Property.OtherProperty}" * [Fix] Issue when using Array Indexer as binding path e.g. PropertyWithCollection[0]. This is not supported * [Fix] Issue whith using . Paths in NET4 * Allow binding to element of collection * Allow Write-Only Properties too. * Extracted Methods for better understanding * Adding XML-Documentation * Use Display.Prompt intead of Display.Description
- Loading branch information
Showing
8 changed files
with
189 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -342,5 +342,4 @@ | |
</Grid> | ||
</AdornerDecorator> | ||
|
||
</UserControl> | ||
|
||
</UserControl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters