Universal Windows Platform UWP: Difference between revisions

From Yggenyk
Jump to navigation Jump to search
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 44: Line 44:
* [https://github.com/Microsoft/XamlBehaviors/wiki/DataTriggerBehavior DataTriggerBehavior]
* [https://github.com/Microsoft/XamlBehaviors/wiki/DataTriggerBehavior DataTriggerBehavior]


==XAML Behaviors==
==XAML Platform==
* [https://docs.microsoft.com/en-us/windows/uwp/xaml-platform/ XAML Platform]
 
===Move and draw commands syntax===
Learn about the move and draw commands (a mini-language) that you can use to specify path geometries as a XAML attribute value. Move and draw commands are used by many design and graphics tools that can output a vector graphic or shape, as a serialization and interchange format.
* [https://docs.microsoft.com/en-us/windows/uwp/xaml-platform/move-draw-commands-syntax Move and draw commands syntax]
 
===XAML Behaviors===
* [https://github.com/Microsoft/XamlBehaviors The official home for XAML Behaviors on GitHub]
* [https://github.com/Microsoft/XamlBehaviors The official home for XAML Behaviors on GitHub]


Line 54: Line 61:
* [https://github.com/rmarinho/LFHeatMap .NET and Xamarin port of [https://github.com/gpolak/LFHeatMap LFHEATMAP iOS] heat map package]
* [https://github.com/rmarinho/LFHeatMap .NET and Xamarin port of [https://github.com/gpolak/LFHeatMap LFHEATMAP iOS] heat map package]
* [https://www.nuget.org/packages/LFHeatMap/ LFHeatMap 1.0.0 - NuGet]
* [https://www.nuget.org/packages/LFHeatMap/ LFHeatMap 1.0.0 - NuGet]
===Charts===
Simple, flexible, interactive & powerful charts, maps and gauges for .Net
* [https://github.com/beto-rodriguez/Live-Charts Live-Charts]
===Misc===
CompositionProToolkit is a collection of helper classes for the Windows.UI.Composition namespace and the Win2d project. It also contains controls which can be used in UWP applications.
* [https://github.com/ratishphilip/CompositionProToolkit CompositionProToolkit]


==Tools==
==Tools==
[[File:XDraw.png]]
[[File:XDraw.png|400px]]
* [https://xdraw.codeplex.com/ XDraw makes it easier for developers to create XAML vector graphics.]
* [https://xdraw.codeplex.com/ XDraw makes it easier for developers to create XAML vector graphics.]

Latest revision as of 01:56, 30 March 2017


Bindings

Cimbalino Toolkit

CimbalinoToolkit.png

Cimbalino Toolkit depends on Microsoft.Xaml.Behaviors.Uwp.Managed.

Cimbalino Toolkit Samples

Styling

Styling ListView and GridView

If you want your GridView to be filled Vertically and scroll sideways you can style it like this: <syntaxhighlight lang="python" line='xaml'> <GridView>

   <GridView.ItemsPanel>
       <ItemsPanelTemplate>
           <ItemsWrapGrid Orientation="vertical" />
       </ItemsPanelTemplate>
   </GridView.ItemsPanel>

</GridView> </syntaxhighlight>

Styling buttons

Grouping buttons as radio buttons

Datatriggers

XAML Platform

Move and draw commands syntax

Learn about the move and draw commands (a mini-language) that you can use to specify path geometries as a XAML attribute value. Move and draw commands are used by many design and graphics tools that can output a vector graphic or shape, as a serialization and interchange format.

XAML Behaviors

Dependency Properties

NuGet Packages

Heat maps

Charts

Simple, flexible, interactive & powerful charts, maps and gauges for .Net

Misc

CompositionProToolkit is a collection of helper classes for the Windows.UI.Composition namespace and the Win2d project. It also contains controls which can be used in UWP applications.

Tools

XDraw.png

id=siteTree