File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ #region Copyright information
2+ // <copyright file="BLoc.cs">
3+ // Licensed under Microsoft Public License (Ms-PL)
4+ // https://github.com/XAMLMarkupExtensions/WPFLocalizationExtension/blob/master/LICENSE
5+ // </copyright>
6+ // <author>Konrad Mattheis</author>
7+ #endregion
8+
9+ namespace WPFLocalizeExtension . ValueConverters
10+ {
11+ #region Usings
12+ using System ;
13+ using System . Collections . Generic ;
14+ using System . Linq ;
15+ using System . Text ;
16+ using System . Threading . Tasks ;
17+ using System . Windows . Markup ;
18+ #endregion
19+
20+ /// <summary>
21+ /// Baseclass for ValueTypeConvertes which implements easy usage as MarkupExtension
22+ /// </summary>
23+ public abstract class TypeValueConverterBase : MarkupExtension
24+ {
25+ #region MarkupExtension
26+ /// <inheritdoc/>
27+ public override object ProvideValue ( IServiceProvider serviceProvider )
28+ {
29+ return this ;
30+ }
31+ #endregion
32+ }
33+ }
You can’t perform that action at this time.
0 commit comments