https://quickconverter.codeplex.com/ Quick Setup Steps Add the assembly reference to your project. This can also easily be done using the NuGet package . Add the namespaces to Quick Converter that it will need to know about (before any xaml that uses it is loaded). e.g. In your WPF application's App.xaml.cs file: public partial class App : Application { public App() : base () { // Setup Quick Converter. // Add the System namespace so we can use primitive types (i.e. int, etc.). QuickConverter. EquationTokenizer .AddNamespace( typeof ( object )); // Add the System.Windows namespace so we can use Visibility.Collapsed, etc. QuickConverter. EquationTokenizer .AddNamespace( typeof (System.Windows. Visibility )); } } Add the Quick Converter namespace to your xaml files so you can ref...
댓글
댓글 쓰기