All Projects → Keboo → Showmethexaml

Keboo / Showmethexaml

Licence: mit
A WPF component making it easy to show the corresponding XAML for WPF custom styles and controls

Projects that are alternatives of or similar to Showmethexaml

Vis Graph3d
📊 Create interactive, animated 3d graphs. Surfaces, lines, dots and block styling out of the box.
Stars: ✭ 129 (-0.77%)
Mutual labels:  hacktoberfest
Adonis Cli
adonis cli module to generate new application
Stars: ✭ 130 (+0%)
Mutual labels:  hacktoberfest
Cicerone
🏛️ Give tours of your Shiny apps
Stars: ✭ 131 (+0.77%)
Mutual labels:  hacktoberfest
Guides Source
This repository contains the Ember.js Guides
Stars: ✭ 130 (+0%)
Mutual labels:  hacktoberfest
Mail
Mail app designed for elementary OS
Stars: ✭ 130 (+0%)
Mutual labels:  hacktoberfest
Easy Build
Collection of Dockerfiles for building embedded software distributions
Stars: ✭ 130 (+0%)
Mutual labels:  hacktoberfest
Dmn Js
View and edit DMN diagrams in the browser.
Stars: ✭ 129 (-0.77%)
Mutual labels:  hacktoberfest
Linearprogressbar
Material Linear Progress Bar for your iOS apps
Stars: ✭ 131 (+0.77%)
Mutual labels:  hacktoberfest
Docker Mailman
Dockerfiles for the mailman suite.
Stars: ✭ 130 (+0%)
Mutual labels:  hacktoberfest
Skip Silence
🔇 Chrome extension to skip silent parts in videos and audio files on any webpage
Stars: ✭ 130 (+0%)
Mutual labels:  hacktoberfest
Progressbar
A really basic thread-safe progress bar for Golang applications
Stars: ✭ 2,212 (+1601.54%)
Mutual labels:  hacktoberfest
Typescript Vs Flowtype
Differences between Flowtype and TypeScript -- syntax and usability
Stars: ✭ 1,671 (+1185.38%)
Mutual labels:  hacktoberfest
Yii2 Twig
Yii 2 Twig extension.
Stars: ✭ 130 (+0%)
Mutual labels:  hacktoberfest
React Next Boilerplate
🚀 A basis for reducing the configuration of your projects with nextJS, best development practices and popular libraries in the developer community.
Stars: ✭ 129 (-0.77%)
Mutual labels:  hacktoberfest
Ookii Dialogs Winforms
Common dialog classes for Windows Forms applications
Stars: ✭ 130 (+0%)
Mutual labels:  hacktoberfest
Yguard
The open-source Java obfuscation tool working with Ant and Gradle by yWorks - the diagramming experts
Stars: ✭ 130 (+0%)
Mutual labels:  hacktoberfest
Ember Data Url Templates
an ember-addon to allow building urls with url templates instead of defining buildURL
Stars: ✭ 130 (+0%)
Mutual labels:  hacktoberfest
Docker Influxdb Grafana
A Docker container which runs InfluxDB and Grafana ready for persisting data
Stars: ✭ 130 (+0%)
Mutual labels:  hacktoberfest
Fossurl
Your Own Url Shortner Without any fancy server side processing and support for custom url , which can even be hosted on GitHub Pages
Stars: ✭ 131 (+0.77%)
Mutual labels:  hacktoberfest
Amplitude Android
Native Android SDK for Amplitude
Stars: ✭ 129 (-0.77%)
Mutual labels:  hacktoberfest

ShowMeTheXAML

A WPF component making it easy to show the corresponding XAML for WPF custom styles and controls. It was built out of a need to shows the XAML for the theme library MaterialDesignInXamlToolkit. You can see it working in the demo application for MaterialDesignInXamlToolkit.

NuGet Status NuGet Status NuGet Status

Setup

  1. Install the MSBuild package. PM> Install-Package ShowMeTheXAML.MSBuild This will also install the ShowMeTheXAML package as well.
  2. Add the following code in your App.xaml.cs
protected override void OnStartup(StartupEventArgs e)
{
    XamlDisplay.Init();
    base.OnStartup(e);
}
  1. (Optional) The default template is pretty basic. For a better looking style add the ShowMeTheXAML.AvalonEdit package. PM> Install-Package ShowMeTheXAML.AvalonEdit In App.xaml include the resource dictionary.
<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="pack://application:,,,/ShowMeTheXAML.AvalonEdit;component/Themes/xamldisplayer.xaml" />
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

Usage

<smtx:XamlDisplay UniqueKey="SomeUniqueString">
  <StackPanel>
    <Button Content="Some Content" />
    <TextBlock Text="Text" />
  </StackPanel>
</smtx:XamlDisplay>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].