WPF UserControl Page Binding Issue
Hello everybody, I have a really basic question actually about WPF binding in my code. The problem is that I have a WPF page which inherited from a base class which inherits from UserControl and the base class implements INotifyPropertyChanged…
Sometimes click something in The WebView2 Page will open a new Microsoft Edge Window,could we show it in the Webview2 replace open a new window?
With local file WebView2: var env = await CoreWebView2Environment.CreateAsync(WebViewRuntimeFolder, DataFolder, opt)); await webView.EnsureCoreWebView2Async(env); I want whatever you click in the WebView2,The requested showed in the WebView2 Element,…
How do I localize the AppDescription of Desktop Bridge apps?
I have a UWP application. The project contains the following files: de-DE\Resources.resw en-US\Resources.resw Each file contains a text with the key AppDescription. en-US is set as the default language in Package.appxmanifest. When submitting to the…
Window shown in alt tab menu even included tool window style
I am working with wpf application that create a transparent, topmost window. I also set tool window style for my window by using: SetWindowLong(hwnd, GWL_EXSTYLE, extendedStyle | WS_EX_TOOLWINDOW). It is ok during application running but when I go to…
Application does not open when installed in another PC?
Hello, I have a WPF with .NET Framework project. All working as expected. Built the project with Release (Any CPU) and generated an installer setup file using inno script. Upon installing the application in a different PC I noticed that application does…
UI Automation client doesn't see all dynamic elements of WPF application
Hi there. I have a problem while automating a WPF App using Windows UI Automation client API. After attaching to the app process I can see all static visible elements on UI using Windows UI Automation client, but after expanding some multiple-level…
Jaws screen reader /Narrator does not read selected value of combo box control which contains tree view control in wpf
Hi, I have created one combo box control and inside ComboBox.Template I have added one tree view control. Basically one Combobox user control which on expanding shows contents as treeview control. Combox selected item is bound with item which is selected…
[WPF] Input method switching between Chinese causes the program to crash randomly.
应用程序: Win178.exe Framework 版本: v4.0.30319 说明: 应用程序通过 System.Environment.FailFast(string message) 请求终止进程。 消息: 不可恢复的系统错误。 堆栈: 在 System.Environment.FailFast(System.String) 在 System.Windows.Documents.TextStore.OnEndComposition(ITfCompositionView) 在…
GridSplitter Issue in Wpf
Hi, I am encountering a problem with the GridSplitter. I have several templates designed for various user interfaces, and I am utilizing a template selector to apply the appropriate UI to the ItemsControl. Each template consists of three components: a…
Where is system.device.location?
I am trying to use the GeoCoordinateWatcher in my WPF application. Whenever I type the using statement "using System.Device.Location" I am told it does not exist. I have read that I have to add it as a reference but when I go to the list of…
How can i correct a script that is not working in powershell and wpf displaying a active directory treeview
I don't want to load everything at the same time but when i click on a node display inside objects only permitting to not freeze the load , as almost is done in dsa.msc on active directory. Code copy below: this script was given by chatgpt and i…
High RAM Usage with Custom Splash Screen in WPF (Code-Behind, .NET Core 6) - How to Reduce Memory Consumption?
I'm working on a WPF application using .NET Core 6 (Code-Behind, no MVVM) in Visual Studio 2022 on Windows 10. I've created a customized splash screen that displays a GIF on startup. The splash screen closes once the app has fully loaded. My problem is…
Using Renegotiation in C#
Hi All, We have a WPF application built on .Net Framework 4.8. This application acts an HTTPs client. We are currently using the code provided in the attached file for HTTPs communication. This code is used to run a sequence of commands one after…
Identify Mutual Authentication request at LDAPs
Hello All, We have a WPF application built on .Net Framework 4.8. This application acts as an LDAPs client for authentication purposes. The LDAPs server being used has provision for enabling mTLS. When mTLS is enabled, the client application needs to…
WPF Bitmapimage resizing is messed up in windows 11 24H2
There is a WPF ImageControl that takes local file as source. Before saving it on server, I am trying to resize the image so that I dont store huge files. I am also trying to reduce the image quality if image size exceeds 12 kb even after resizing. But in…
How to Write a DependencyProperty for a TextBlock when it is a child element of a parent Button class in WPF C#?
Hi there, I want to make a Dependency Property for a Text Block and the functionality of this property is to apply a Scale Transformation on the Text Block but I am unable to do that Because it's a child element inside of a Button class. I have a…
How Can I Register and Manage Services in a Large C# Project?
Hello I will start developing a new C# WPF project. I need your information on something while planning. I will use the MVVM pattern in the project. I will create a large number of services to perform some tasks and use them in the relevant classes. I am…
Theming of WPF dialog not working for all controls on the dialog
Hi, I need to change color/theme of all controls on WPF dialog whenever there is change of theme from VS2022 (i.e. Tools -> Options -> Color Theme ) I followed below MSDN…
How to Configure Library Files to Run in a Subfolder?
Hello There is a library named TolkDotNet.dll in a c# wpf project. This library references various dll files in the x86 and x64 folders. To get rid of the file confusion, I placed them in the Lib folder as TolkDotNet, x86, x64. Then I showed the…
I want to Understand the Rendering Modes in WPF application.
Recently i came across this section of code on Stackoverflow. void myClass_SourceInitialized(object sender, EventArgs e) { Log.Info("myClass_SourceInitialized"); System.Windows.Interop.HwndSource source =…