23,939 questions with .NET-related tags

Sort by: Updated
0 answers

What technologies should be used for a desktop application on remote buildings?

I am used to .net development. I plan to make a WPF application, with an SQL database, ideally with a small public web part and a part in Xamarin. It must therefore be able to transit via the Internet while remaining private, but not always. Take a…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-07-02T09:14:58.523+00:00
Nicolas HAENEN 1 Reputation point
commented 2020-07-03T07:22:19.61+00:00
DaisyTian-1203 11,616 Reputation points
0 answers

Converting EMF to PNG preserves/displaying Excel cell with No Color data

Hi, We have NT EMF virtual printer, We have Excel sheet (contains each cell data with no color) show that no color cell will not be printed. When we print that Excel sheet to our virtual printer, it will print EMF data to or WPF application. …

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-25T09:47:06.23+00:00
Ashok Kumar 1 Reputation point
commented 2020-07-03T07:08:46.147+00:00
Ashok Kumar 1 Reputation point
1 answer

How to specify using the default style in XAML?

The basic problem is that a WPF application I'm working on makes extensive use of Material Design. The problem I'm running into is that it appears that the DatePicker style makes it very difficult to apply a converter to get its output to look like…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-30T19:18:10.64+00:00
Richard Haggard 6 Reputation points
answered 2020-06-30T22:39:34.017+00:00
gekka 6,671 Reputation points MVP
2 answers One of the answers was accepted by the question author.

[WPF] Soft Keyboard Shows, Then Hides, in Popup Window

My WPF application is targeting .NET Core 3.1. It runs on Win10 laptops and Surface Pro tablets (in tablet mode). The tablet is running Win10 Update 1909. The app has a popup window for the user to enter a Username and Password. When the user taps on…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-25T21:01:46.047+00:00
garry 96 Reputation points
accepted 2020-06-30T16:23:12.097+00:00
garry 96 Reputation points
2 answers One of the answers was accepted by the question author.

binding to abstraction collection of abstraction class

hi , i have : public class Tangent { public IPoint2d StartPoint {get; set;} ... } ... public IList<ITangent> Tangents = new ObservableCollection<ITangent>(); Tangents.Add(new Tangent(new Point2d())); ... <ListBox …

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-28T05:34:00.69+00:00
essamce 621 Reputation points
accepted 2020-06-30T08:06:50.397+00:00
essamce 621 Reputation points
6 answers One of the answers was accepted by the question author.

WPF Foreground Color in a DataGrid, Change via Code (C#)?

Hi, I need to Change a Foreground Color in a DataGrid Line, here ist the XAML Code from the Line in the DataGrid: <DataGridTemplateColumn Header="Nr " Width="38" CanUserSort="True"…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-28T15:13:24.553+00:00
Bernd Riemke 41 Reputation points
accepted 2020-06-29T14:30:07.927+00:00
Bernd Riemke 41 Reputation points
1 answer

WPF DataGrid column header mouse events

I have following events with subscriptions in the class, derived from DataGrid: private void SubscribeHeaders(DependencyObject sender = null) { sender = sender ?? this; for (int childIndex = 0; childIndex <…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-29T06:23:36.72+00:00
Arli Chokoev 1 Reputation point
answered 2020-06-29T08:41:13.04+00:00
DaisyTian-1203 11,616 Reputation points
1 answer

wpf custom control property of type class

hi i'm trying to create a custom control with a public property Boundary of type MovingBoundary(as below), but when i'm trying to use my custom control in a xaml i cant't initialize Boundary property. <custom:MyCustomControl …

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-25T12:42:24.607+00:00
essamce 621 Reputation points
commented 2020-06-29T07:40:09.767+00:00
DaisyTian-1203 11,616 Reputation points
1 answer One of the answers was accepted by the question author.

WPF ViewModel DataContext between UserControl Windows

Hi, have anyone a small sample for me like this: Master Window Sub Window In the Sub Window is a UserControl Window How can i send data via datacontext from the Master Window to the UserControl Window? I can set the first data easy from…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-15T09:26:46.217+00:00
Bernd Riemke 41 Reputation points
commented 2020-06-28T15:16:19.727+00:00
Bernd Riemke 41 Reputation points
0 answers

How know WPF DataGrid ItemsSource bind finish

Datagrid control ItemsSource Attribute bind List, but , I donot know When is the data loaded ?

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-24T02:50:54.953+00:00
929Free 281 Reputation points
commented 2020-06-28T01:13:06.557+00:00
929Free 281 Reputation points
1 answer One of the answers was accepted by the question author.

class property access in parent only

hi, i'm new to c#, i want solve this problem : public class Location { public int X { get; set; } public int Y { get; set; } public Location() : this(0, 0) { } public Location(int x, int y) { X =…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-26T20:25:16.93+00:00
essamce 621 Reputation points
commented 2020-06-27T08:47:49.08+00:00
Daniele 1,996 Reputation points
0 answers

MVVM & Microcontrollers

I am creating an application that can control a micro controller. So the GUI allows me to say things like Define if a particular pin is an input pin or output pin. So there is a combo box with [In, Out] values. Integer (or other) text fields that…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-25T20:55:23.393+00:00
hfaun 1 Reputation point
commented 2020-06-26T06:23:29.263+00:00
DaisyTian-1203 11,616 Reputation points
1 answer

Undrstanding the MVVM pattern

Hello everyone. I want to get some clarification about MVVM a possibly help me with a WPF app I have this class, witch represent a User public int Id { get; set; } private string _Name; public string…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-25T00:59:06.183+00:00
Eduardo Gomez 3,416 Reputation points
commented 2020-06-26T05:58:03.82+00:00
DaisyTian-1203 11,616 Reputation points
0 answers

Blank space when system's scale changed

When I dock simple WPF window to right or left side (scale set to 125% or higher) and then return the system scale to original value 100% an ugly blank space appears at the bottom of the window as you can see here: The WPF application is newly…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-04-03T07:29:53.833+00:00
Lukáš Koten 1 Reputation point
commented 2020-06-25T07:07:06.463+00:00
Lukáš Koten 1 Reputation point
1 answer

How to monitor the current status of the printer In WPF?

When I print a document, I have no paper, this time, I want to get finished or paperless status? Thanks

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-23T04:47:36.647+00:00
929Free 281 Reputation points
commented 2020-06-25T06:50:44.34+00:00
DaisyTian-1203 11,616 Reputation points
7 answers

DataGridTemplateComboboxColumn in WPF

Hi all: I'm new in WPF and I'm having a hard time trying to make the Combobox works in a DataGridTemplateColumn. I don't want to use DatagridComboboxColumn because the cells on this column look like a text column, the user has to click on it so the…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-09T21:34:01.697+00:00
Carlos Lino 6 Reputation points
answered 2020-06-25T06:45:31.043+00:00
Peter Fleischer (former MVP) 19,231 Reputation points
0 answers

WebBrowser -> acces to css when mouse hover of html id style -> get, set, click inside wpf + c#

Hello i need a help, how can i decide the problem with it. I wan to get value from the html elements my id and style while the mouse is moving hover the element --> get, set and do auto click by the elements... so.. First of all i have loaded…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-23T17:33:54.017+00:00
Absurt Reputation 1 Reputation point
commented 2020-06-25T03:35:54.493+00:00
DaisyTian-1203 11,616 Reputation points
3 answers

Asp.net Core 2.1 web api deployed successfully but not getting response from my web api url

Can you please guide me why i am not getting response from following link https://otgapi.azurewebsites.net/api/values This url shows https://otgapi.azurewebsites.net/ api deployed successfully.

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,177 questions
asked 2020-06-17T10:47:10.39+00:00
A b d u l Wahab 1 Reputation point
answered 2020-06-25T03:27:41.12+00:00
Monalla-MSFT 11,641 Reputation points
3 answers

A question about fades in XAML

Hello all I have a question about XAML. I looked at a lot of examples these last few days trying to figure something out without any success... What I am trying to achieve is this: I created a style for some buttons I will be using. I would like those…

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-23T20:39:32.417+00:00
Richard Hille 1 Reputation point
answered 2020-06-25T00:55:04.747+00:00
gekka 6,671 Reputation points MVP
1 answer

Screen.PrimaryScreen.WorkingArea is not giving full screen?

I am trying to make an Windows form app that will auto scale to full screen. The problem is that I do not want to make it full screen if it is less than 1680x1050. So I tried to use Screen.PrimaryScreen.WorkingArea.Width / Height to get the resolution. …

Windows Presentation Foundation
Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2,674 questions
asked 2020-06-17T08:42:17.137+00:00
Sean Huang 1 Reputation point
commented 2020-06-24T12:18:51.097+00:00
Sean Huang 1 Reputation point