Development WinUI
Feb 7, 2017

UWP application settings performance

Discover how to improve the performance of your UWP app's settings retrieval, as the ApplicationData API can be slow. Read how to implement caching to optimize the process. Find the complete code on GitHub.

Visual Studio Development WinUI XAML
Feb 1, 2017

Úskalí třídy VisualStateManager

Přečtěte si tento článek a zjistěte, jak používání VisualStateManageru ve spojení s AdaptiveTriggery může být matoucí. Budete překvapeni, jaké problémy můžete narazit při přecházení mezi jednotlivými stavy rozložení. Najdete zde také tipy, jak tyto problémy vyřešit.

Visual Studio Development WinUI XAML
Feb 1, 2017

VisualStateManager pitfalls

Discover the two gotchas with VisualStateManager when building XAML layouts in UWP. Learn about the placement issue and the consequences of invalid setters. Check out the full article on how to overcome these challenges!

Development General
Jan 28, 2017

Vytvoření boot entry bez Hyper-V pomocí PowerShell skriptu

Přečtěte si, jak vytvořit sekundární boot entry pomocí příkazové řádky a PowerShell skriptu pro spouštění virtuálních strojů v VirtualBoxu a emulátory Windows Mobile v Hyper-V. Snadné a pohodlné řešení pro tento problém!

Development General
Jan 28, 2017

Adding Hyper-V-less boot entry with PowerShell

Developers often encounter the need to run virtual machines using VirtualBox and Hyper-V-based mobile emulators on the same machine. Unfortunately, only one of the two can be enabled at once. However, there is an easy solution to this problem! Check out this blog post to learn how to create two boot entries and disable Hyper-V in one of them using a PowerShell script. It's a simple yet convenient solution. Download the script and give it a try!

WinUI
Jan 20, 2017

Sledování změn systémových barev v UWP aplikacích

Uživatelé milují personalizaci a očekávají, že se aplikace adaptují jejich volbám. Co když ale uživatel změní nastavení barev za běhu aplikace? Čtěte dál a dozvíte se, jak pomocí ThemeResource a UISettings reagovat na změny barev v aplikaci.

WinUI
Jan 20, 2017

Observing system color changes in UWP apps

Discover how to make your app adapt to user preferences in real-time with accent colors and dynamic resource references. Learn how to access the current accent color and handle color changes outside of XAML using the UISettings class. But beware, there might be an unreliable bug in the system! Check out the full article to find out more.

Visual Studio WinUI General
Jan 11, 2017

Použití barev pleti Emoji v aplikacích

Unicode 8.0 přidal pět znaků tónu pleti - tzv. Modifiers, které umožní změnit barvu kůže u některých Emoji emotikon. Jak toho můžeme využít v našich aplikacích? V článku se dozvíte, jak kombinovat modifier znaky s Emoji, jaké existují barvy pleti a jak implementovat změnu barvy pleti v kódu.

Visual Studio WinUI General
Jan 11, 2017

Working with Emoji skin tones in apps

Discover how to use the new Unicode 8.0 feature that allows you to change the skin color of emojis in your apps. This article provides information on modifiers, combining emojis, implementing skin tone modifications, and includes sample code. Find out how to support all skin tones in your app!

Development General
Jan 7, 2017

C#: Návrhový vzor Builder s dědičností

Návrhový vzor Builder je výborným způsobem, jak zapouzdřit a zjednodušit konstrukci složitých objektů. Ve spojení s návrhovým vzorem fluent interface umožňuje vytvořit praktické API, které je snadno pochopitelné pro ostatní vývojáře. Ale co když přidáme dědičnost? V tomto blogovém příspěvku se dozvíte, jak vylepšit tento vzor pomocí generik a curiously recurring template pattern. Odhalíme chyby při používání nejčastěji používaného

Development General
Jan 7, 2017

C# Builder pattern with inheritance

Learn how to use the Builder pattern in conjunction with the fluent interface pattern to create a nice API for building complex objects in your library. Discover how to handle inheritance in the builders to ensure that the correct type is built and explore a more generic approach to building objects. Find out how to make the fluent methods in the builders return their specific derived types, making the API more flexible. Check out the final version of the code and see how the improvements have been implemented. This blog post provides a comprehensive guide to using the Builder pattern effectively in your projects.

Visual Studio Development WinUI XAML
Jan 3, 2017

Zarovnání obsahu UWP CommandBaru po Anniversary Update

Ovládací prvek CommandBar v Anniversary Update přináší novou funkci dynamic overflow. Bohužel však způsobuje problémy s zarovnáním obsahu. Tento blog post vám představí příčinu problému a nabídne řešení.