Hanging on installing a missing framework
This morning I started a new UWP project to test something. This is a very simple project. I have a textbox, button and textblock. That's it. I've added MVVMLight to it. I built it next. That worked fine. Then I've tried to debug it. That's where it…
Developer technologies | Universal Windows Platform (UWP)
How do I in UWP in Tabview add buttons for navigation?
<Page x:Class="Frost.Browser2" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:Frost" …
Developer technologies | Universal Windows Platform (UWP)
We want to extendedExecutionUnconstrained for store submission also?
I want to run the app in minimize mode also and I am submitting my app in store also.. so need to add this capability extendedExecutionUnconstrained for store also? or no need to add this capability for store submission and app will run in minimize…
Developer technologies | Universal Windows Platform (UWP)
How does patch system internally works?
Hello, I've been trying to find an answer to this question over any of the documentation pages but it seems like I can't find any solution. I'm wondering how does the patch system internally works and deliver the updates to the users so my…
Developer technologies | Universal Windows Platform (UWP)
FlowDirectio
I have a C++ UWP app that supports localization. The app has a textbox that shows digits. I have set the FlowDirection at the root frame level of the app to be right to left for Arabic locale and left to right for the other language depending on the…
Developer technologies | Universal Windows Platform (UWP)
UWP Compilation error with .net native compile option enabled : Internal compiler error: Specified cast is not valid
I have a UWP project where build works in debug mode but build fails in release mode where .net native compiler is selected. The UWP projects has many external third party libraries like RTSP client sharp, .net media foundation. The error shown is …
Developer technologies | Universal Windows Platform (UWP)
WPF ComboBox binding
How can I make a ComboBox to display the selected item? I have following ComboBox declared in XAML: <ComboBox Margin="4 0 2 0"; ItemsSource="{Binding YAxes}" SelectedItem="{Binding SelectedYAxis,…
Developer technologies | Windows Presentation Foundation
Binding to a DependencyProperty from a ControlTemplate
I have a UserControl with a DependencyProperty called "MyObject." In UserControl.Resources I have a ControlTemplate with a Rectangle and I'm wanting to change the Fill based on a Property in MyObject using DataTriggers. I'm just not sure how…
Developer technologies | Windows Presentation Foundation
static resources color name
<sys:Double x:Key="Window.Main.Background" >1200</sys:Double> ///////////////////////////////////////////////////////////////////////////////////// <Window x:Class="DCAD.MainWindow" …
Developer technologies | Windows Presentation Foundation
UWP FirstRunDialog Turn Off
I created an app using the Template Studio. It includes a FirstRunDialog feature. Where can I programatically (in code-behind) turn on-off this dialog from appearing? Using something like FirstRunDialog.Show=off as an example. thanks
Developer technologies | Universal Windows Platform (UWP)
App won't come to the foreground when started
This is a MSDN question asked by Will Pittenger, the source is App won't come to the foreground when started. I have a WPF application that when I start it from Visual Studio, its main Window goes to the background rather than becoming the foremost…
Developer technologies | Windows Presentation Foundation
Removing line chart datapoints where dependency property is null
This is a MSDN question asked by Mike Whalley, the source is Removing line chart datapoints where dependency property is null. I have a line and bar chart showing the monthly movement in a bank account and the account balance (cashflow) as illustrated: …
Developer technologies | Windows Presentation Foundation
I want to be able to select a folder and search/print to a list the key phrase I've specified. Currently I can only do individual files. I'm a beginner.
This is a MSDN question asked by spum0n1, the source is I want to be able to select a folder and search/print to a list the key phrase I've specified. Currently I can only do individual files. I'm a beginner.. using System; using…
Developer technologies | Windows Presentation Foundation
WPF Media Element - Weird Colors
This is a MSDN question asked by TheKapster, the source is WPF Media Element - Weird Colors. Hi, I've used different videos in different formats but for some reason the built-in media element is displaying weird colors. What's supposed to be…
Developer technologies | Windows Presentation Foundation
TextBox. GetLineIndexFromCharacterIndex returns -1 when passing in large text
This is a MSDN question asked by moondaddy, the source is TextBox. GetLineIndexFromCharacterIndex returns -1 when passing in large text. The sample code below calls the GetLineIndexFromCharacterIndex method on the TextBox and it returns -1 when passing…
Developer technologies | Windows Presentation Foundation
WPF How to load Dictionaries as Application does?
I am converting application in to DLL (CLassLibrary) and therefore I cannot use App.Xaml (Application). Inside my Dictionaries I use StaticResources for Storyboards and animations. Unfortunately it is not possible to use DynamicResources for Storyboards…
Developer technologies | Windows Presentation Foundation
WPF tree view how do I add to the selected item
This is a MSDN question asked by WPF tree view how do I add to the selected item, the source is WPF tree view how do I add to the selected item. public List<TreeViewList> treelist = new List<TreeViewList>(); private void…
Developer technologies | Windows Presentation Foundation
Starting a Program
This is a MSDN question asked by Warp_Speed, the source is Starting a Program. Hi People I am a beginner to programming and self taught, but I was wondering if people could give me there opinion: Best way to build a WPF C# Program 1) Build the Code and…
Developer technologies | Windows Presentation Foundation
populate cascading combobox with Entity Framework
This is a MSDN question asked by zleug, the source is populate cascading combobox with Entity Framework. Hi All. I created simple WPF form with two ComboBoxes. I populated one ComboBox public List<Customer> GetApplication() { …
Developer technologies | Windows Presentation Foundation
using System.Data is not recognized in the newer version of UWP
Is working well in the older version of UWP. Any feedback? DataSet is not recognized. I could not import data from xml.
Developer technologies | Universal Windows Platform (UWP)