Tagged Questions
0
votes
0answers
12 views
UI Automation with White issue finding childs
For some reason I am getting a run-time error from White.Core when trying to locate a Window child from its parent.
ERROR displayed:
White.Core.Mappings.ControlDictionaryException: Could not find ...
0
votes
0answers
28 views
Hide a Dialog if all Input is valid (ObjectDisposedException)
I am developing a C# GUI-application using the Compact Framework for a Windows CE 5 scanner-device.
The application is used to repeatedly gather data entered by a user, mostly by a barcode scanner. ...
-2
votes
0answers
44 views
what are the steps needed to create a UI similar to “Connect to” popup window in C# [closed]
I am new to Windows programming and want to create a programme with a UI similar to windows 7 "Connect to". In windows 7, when one opens Network and Sharing Centre and clicks on "Connect to", it will ...
1
vote
1answer
49 views
How can I lock UI while running the long running process in the main UI Thread in WPF (code in C#)
Actually, I cannot run the long running process in the Background thread. The long running process gets its input directly from the UI and then it has to save any modifications in the database. So, ...
0
votes
2answers
92 views
c# non-responsive second ui thread
i know this is a repost of a previous question i asked...
c# wanting multiple ui threads but getting cross-reference errors instead
...but my followup question wasn't answered so i'm posting again ...
0
votes
0answers
20 views
What is the best way to generate vectors from bitmap source in WPF?
I have for example a bitmap image of a map , Each province is colored with unique color . My challenge is to create a vector shape from each province in the map by it's color .
Why I trying to do ...
-1
votes
1answer
25 views
Can XAML based UI's built in Blend 2012 be used on Win 7?
If you'd like more info on why we need this, please see the body of this question (I've been told it was too general so I'm asking more specific questions):
How should I build a proprietary, and ...
-1
votes
1answer
50 views
In terms of C# apps, which is easier (or possible) to port from Windows to OSX - XAML or WPF? [closed]
please see this question for more info on why I'm asking:
How should I build a proprietary, and complex, UI that can be ported (as is) between Windows, OSX, iOS etc.?
-5
votes
0answers
45 views
How should I build a proprietary, and complex, UI that can be ported (as is) between Windows, OSX, iOS etc.? [closed]
My team and I are just beginning development of a collaboration app. It will be cloud based for syncing etc, and will first have a client for Windows (business reasons), and then very soon after for ...
-2
votes
0answers
14 views
WinRT turn off Transistion/Animations within an app
Some of my Customers are complaining, when navigating pages quickly, that the transition animations are making the UI seem unresponsive.
Is there a a way to globally turn off animations?
0
votes
0answers
10 views
Setting child templates based on type in RadGridView with hierarchical data
https://s3.amazonaws.com/MJWTEST/Images/JOBS1.png
https://s3.amazonaws.com/MJWTEST/Images/JOBS2.png
So I have three different types:
Structures
Specifics
Generics
Structures have a list of ...
0
votes
3answers
39 views
Need to determine screen resolution to display necessary items on web page in ASP.NET
I have a peculiar scenario, where in I have to display extra elements on my webpage if the user is using a 24 inch monitor.
I know we could determine the height and width using Javascript, but how do ...
0
votes
1answer
20 views
WPF - Access parent properties from internal control's part ControlTemplate trigger
Short question:
In case you have a control consisting of multiple parts (like DatePicker, which consists of PART_Root, PART_Button, PART_Textbox etc...), how can you bind a trigger of an inner part's ...
0
votes
2answers
76 views
C# Best choice of GUI
In C#, what choice of GUI would be the best when concerned about performance?
Example: WinForms, WPF or something else.
EDIT: Gui used for Real Time Rendering Editor
Thank You
2
votes
2answers
37 views
how to make byte value be used as int
I'm trying to make server be able to received client byte and use it as integer, how can I do that? this is the code I'm try to fix~ the only error is that it cannot process the byte to int... please ...