Questions tagged [wpf]

WPF, short for Windows Presentation Foundation, serves as a subsystem designed to render user interfaces within applications that run on the Windows operating system.

Is there a pub/sub framework specifically designed for managing events in Angular?

Having a background in WPF with Prism, I am familiar with the IEventAggregator interface. It allows you to define events that can be subscribed to from controllers and then triggered by another controller. This method enables communication between controll ...

Retrieve the JSON information and assign it to a variable

I'm currently working on a project that involves retrieving data through JSON and then displaying it in a datagrid. Here is the code snippet I am using to fetch the data: using (WebClient webClient = new WebClient()) { string email = loginDialo ...

Trouble integrating JSON data with Newtonsoft.Json library in WPF applications

Currently, I am working on extracting data from the office365 API that returns responses in JSON format. My aim is to store specific data such as Id and DisplayName into variables for further use, but I seem to be struggling with the process. I came across ...

executing a pre-existing executable file within a web browser or XAML Browser Application (

Currently, I have an application (let's call it exe1) provided by the supplier of our instruments that I would like to integrate into my existing application. Instead of rewriting exe1 from scratch, I am considering embedding it using something like an xba ...

Invalid entry detected in JSON object

I developed a code to deserialize the JSON data from this API To start off, I created a class structure: public class Self { public string href { get; set; } } // Other class definitions omitted for brevity... public class RootO ...

Making the Decision: WPF vs. Silverlight

We currently have a web application built with ASP.NET/Ajax and are considering transitioning it to either WPF or Silverlight. Is anyone able to provide a comparison of these two technologies in terms of productivity, performance, maintainability, trade-o ...

In WPF/C# programming with Newtonsoft, it is necessary to establish a condition using if/else statements before modifying a .json file based on true/false

As a novice navigating a WPF application, I am faced with the task of updating specific values in an external JSON file. These values are restricted to only "true" and "false" outcomes. { "option1": false, "option2": false, " ...