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
// For a sample resx, and the ResX-ResW converter T4 template, | |
// see: https://gist.github.com/krishna-nadiminti/844fe77c9722374a2fb5 |
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
public interface IResourceLoader | |
{ | |
string GetResource(string resourceKey); | |
bool IsLocalisedResource(string resourceKey); | |
} |
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
Microsoft Visual Studio Enterprise 2015 | |
Version 14.0.23107.0 D14REL | |
Microsoft .NET Framework | |
Version 4.6.00079 | |
Installed Version: Enterprise | |
Architecture and Modeling Tools 00322-80000-00000-AA727 | |
Microsoft Architecture and Modeling Tools | |
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
The application crashed: System.NullReferenceException | |
at Telerik.UI.Xaml.Controls.Primitives.TiltInteractionEffect.ApplyTilt(FrameworkElement element, Point manipulationPoint) | |
at Telerik.UI.Xaml.Controls.Primitives.TiltInteractionEffect.OnElementPointerMoved(Object sender, PointerRoutedEventArgs args) |
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
<GridView ItemClick="OnDetailItemClick" | |
ItemsSource="{Binding RandomStrings}" /> |
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
<Page | |
x:Class="Metro.Controls.Demo.Samples.WebViewHostSample" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:MetroControls="using:MetroControls" | |
mc:Ignorable="d" | |
d:DesignHeight="300" | |
d:DesignWidth="400"> | |
<Grid> |
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
<UserControl | |
x:Class="MetroControls.WebViewHostControl" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
xmlns:Converters="using:Metro.Controls.Converters" mc:Ignorable="d" | |
d:DesignHeight="768" | |
d:DesignWidth="320" | |
VerticalAlignment="Stretch" HorizontalAlignment="Stretch"> |
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
<Application x:Class="Test.App" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | |
<Application.Resources> | |
<ResourceDictionary> | |
<ResourceDictionary.MergedDictionaries> | |
<!-- | |
Styles that define common aspects of the platform look and feel |