2
votes
1answer
35 views

WPF threading error(Invalid Operation Exception was handled)

I am creating WPF Project and I have two screen 1)Loading Screen 2)MainWindow My code is as follows from Loading screen private void Window_Loaded(object sender, RoutedEventArgs e) { ...
0
votes
1answer
17 views

WPF starting up interfaces without freezing the GUI

I know there is a bunch of threads about initializing stuff in a different thread so you dont need to freeze your UI. But in my case this initialization involves creating a lot of plots (polylines in ...
0
votes
1answer
27 views

New to Reactive Extensions (Rx), trying to run a CollectionView.Refresh() in a different thread. How?

I have a fairly large amount of data, and binding ListViews, DataGrids with CollectionView, and using OnFilter event to filter the CollectionView. So when loading data for CollectionView and also ...
0
votes
1answer
37 views

Invoking method defined in viewModel from global X close button

In a viewModel of my MVVM based WPF application, I have a two commands to handle two different Cancel clicks, at two different states. When there is no ongoing operation progress - it relays the ...
0
votes
2answers
55 views

Design Review - Resolving IDispatcher Or Dispatcher instance

I am in a process of extending ObservableCollection<T>, which will notify collection change back to UI thread from ViewModel in an ideal MVVM scenario. To achieve this, I am thinking of ...
0
votes
0answers
25 views

WPF Exception crashes Dispatcher, and I cannot catch it

I am trying to validate resources of resource dictionaries. Because the dispatcher thread cannot be restored after a DispatcherException, I start a second STA thread in a second AppDomain. In this ...
0
votes
2answers
47 views

Create complex UserControl during runtime without freezing the GUI

I have an very complex UserControl which needs to be created at runtime. This creation freezes the GUI for about 5 seconds (which is not acceptable). I tried to move this operation into an Background ...
0
votes
2answers
44 views

Display a busy indicator while waiting for an initialization of a usercontrol

My app needs to load a usercontrol in the MainWindow on startup. However the initialization of the usercontrol is slow. (not because of loading business data, I already separate the UI from business ...
0
votes
0answers
49 views

Best way to use the TaskScheduler

My application is crashing sporadically and it's because I'm making a call to TaskScheduler.FromCurrentSynchronizationContext() a little too quickly after the application has loaded. From a little ...
0
votes
3answers
50 views

convert bitmapsource to byte array in another thread

i select some image and load them into bitmapimage in the main thread,now i want to save them to sqlserver database in another thread ( BackgroundWorker),But the following error occurs: The calling ...
6
votes
3answers
119 views

How do I pass object that was created in thread X to thread Y?

I create a SolidColorBrush on some non-GUI thread, and want to pass it to a GUI thread to display it, but I get InvalidOperationException: The calling thread cannot access this object because a ...
0
votes
1answer
43 views

how do i convert these c# winform codes to be compatible on c# wpf?

hi im working on a project that uses invoke and threads.. it is a simple remote desktop program with chat.. i got a sample here on the internet in c# winform, but i would like to convert it to wpf.. i ...
1
vote
1answer
34 views

Multi-thread UI in WPF

I have two UI threads, one is the main thread and the other is a background thread whose ApartmentState is STA. Each thread creates its own window and the background window has a "Cancel" button on ...
-1
votes
1answer
82 views

Serial port reading + Threads or something better?

I dont know if this is a good way to work with a stack for this task but I'm sure there is a faster way ... I get data from my microcontroller but the data length is not always the same length. I ...
1
vote
4answers
84 views

Asynchronous Threading

I would please like to know where I can get an example of multithreading or asynchronous threading. In the application that I am busy with I have to run a thread in the background of my application ...
2
votes
2answers
125 views

Race condition with Dispatcher.Invoke

I have a WritableBitmap and I want to get its dimensions. Because the object is owned by another thread, we have to go through the Dispatcher. I've tried this: int targetPixelWidth = 0; int ...
0
votes
2answers
171 views

C# WPF Application with TCP Socket and Multiple Threads

Recently, I have undertaken a project and I would like some help from the community with regards to how I can go about learning what I need to and in what order. I.e., this is less technical than ...
0
votes
1answer
30 views

Do event after PropertyChanged Event is done

I am trying to do a "Clear Flag" in my code. I have data being shown on the UI continuously, and I want the user to be able to clear the data when the code is running with a "Clear" button. I have a ...
0
votes
1answer
47 views

How to make some Tasks change my WPF controls

I want to create a WPF application that does this: The application will have 8 Tasks running together. Each task will be able to ad some strings to a text box shown in the main window. how do I get ...
2
votes
2answers
81 views

How to synchronously shutdown WPF application?

App.Current.Shutdown() works asynchronously. It means that when you invoke this method you are not protected from execution of lines of code which follow the invokation of Shutdown(). So the question ...
1
vote
1answer
48 views

Creating wpf controls in background thread

I have to render about 10'000 wpf controls, and I don't want to freeze my application during this action. Is it possible to do it in another thread? I tried to use ...
1
vote
2answers
44 views

RichTextBox - InvalidOperationException: The calling thread must be STA

I'm trying to use this Converting between RTF and HTML library from MSDN to convert some RTF text to HTML. The jist of my setup is an AJAX call from JavaScript to a C# handler which calls this ...
1
vote
1answer
76 views

Rendering the same model in multiple WPF Viewports

I am working on a WPF application which has 4 viewports. I build a 3D model which is fairly complex and contains 50,000-100,000 Triangles. I then want to display the same 3D model in all 4 ...
-2
votes
2answers
76 views

The call is ambiguous between ThreadStart and ParameterizedThreadStart

I tried to compile the following code: public class SplashScreenManager { private static readonly object mutex = new object(); public static ISplashScreen CreateSplashScreen(Stream ...
0
votes
1answer
47 views

Concurrency in multithreaded WPF/Silverlight/WP apps

Consider the following code: int lastItemIndex = m_listbox.ItemsSource.Count - 1; var groupItem = m_listbox.ItemsSource[lastItemIndex] as GroupedObservableCollection<ScheduleItem, DateTime>; ...
0
votes
3answers
137 views

What is the correct way to update the UI in WPF from a thread dispatched from Task Factory?

I am trying to update the UI from one of my thread dispatched via Task.Factory I have having hard time properly updating my UI. Here is the behavior I am observing: Task.Factory.StartNew(() => ...
0
votes
0answers
66 views

Slow richtextbox typing, while populating treeView bounded to observable collection

Hello i have a treeView with hierarchy like <TreeView SnapsToDevicePixels="True" ScrollViewer.HorizontalScrollBarVisibility="Hidden" ItemsSource="{Binding}" BorderBrush="White" ...
1
vote
1answer
56 views

Showing a custom popup window from a Catch statement inside a Task

I have a WPF window that I want to use instead of the regular Windows.MessageBox mostly because I want it to have a "Details" box to show the guts of the error. This works fine until I start getting ...
0
votes
0answers
59 views

wpf time consuming operations and dispatcher

I have to monitor all the frames on a network. For this, i've created 2 ListViews, one for showing the frame names, dlcs, payloads and timestamp. I have an event which fires when a new frame is ...
0
votes
2answers
84 views

Creating a multi-thread webdownload via WebClient / BeginInvoke Method

I have actually the following code: private Stopwatch _sw; public void DownloadFile(string url, string fileName) { string path = @"C:\DL\"; Thread bgThread = new Thread(() => { ...
0
votes
2answers
52 views

Updating two view UI Elements within the same event handler produces erratic results

I have a small program that is not much more than a stop-watch that runs and updates a view. Every 8 seconds the stop watch will increment a counter also on that view. So at 0, 8, 16, 24 seconds ...
0
votes
0answers
64 views

Pass complex objects from thead to UI (WPF, C#)

I have a Thread that retrieves objects from a third party API and stores them in a Treeview list (List) My intention is that the TreeView inside the GUI displays the nodes, but I've had no success so ...
1
vote
1answer
71 views

Update treeview from another thread

I'm quite new to threads in c# (WPF) and since I've implemented some label and progressbar update successfully, I do not understand Why when I try to add items to the treeView of my GUI from another ...
1
vote
1answer
90 views

Threading and collections modification in WPF / C#

I'm currently developing a system in C# / WPF which accesses an SQL database, retrieves some data (around 10000 items) and then should update a collection of data points that is used as data for a WPF ...
1
vote
2answers
108 views

Designing responsive UI using WPF databinding

I am new to WPF. I am trying to understand MVVM pattern using WPF binding. I have below 2 classes MainWindow.xamal ViewModel I have three controls textbox which displays 'Name' property of ...
0
votes
1answer
88 views

Highly Responsive Multi Threaded WPF Application

I Am Working on WPF Application to communicate with 16 Devices through Serial Port. Communication Process includes read and write Commands. Configuration of device takes around 2 minutes. My UI should ...
0
votes
1answer
87 views

How to run computationally expensive task on serial port data outside UI thread

I have a WPF application written in C# that provides a GUI for communication with some equipment on the serial port. he GUI contains a raw output field where characters are shown as they come in, and ...
-1
votes
2answers
53 views

How to terminate a thread after a window on this thread is closed in WPF c#?

I am new to multi-threading. I am doing a project using wpf. Brief introduction to my project: One mainwindow One method in mainwindow creates another thread that creates another window, which is ...
2
votes
3answers
138 views

Update UI element in wpf

I am trying to animate bubble sort algorithm in wpf .For the same I have written following code.Code is compiling.The problem is that when I clicked on sort button it's not updating the UI element.I ...
2
votes
1answer
97 views

How to ensure the exception “The calling thread cannot access this object because a different thread owns it”?

In C# WPF application, if in the following button click event habdler: private void start_Click(object sender, RoutedEventArgs e) { for (int i = 2; i < 20; i++) { var t = ...
1
vote
2answers
128 views

Why to split the tasks not running on UI thread to make WPF app more responsive?

In part1 "Getting Started" of Alexandra Rusina's series. Parallel Programming in .NET Framework 4 in order to make WPF UI responsive, it is done by outsourcing the intensive computations out ...
1
vote
2answers
128 views

STA Thread is not loading the Main Window in WPF

I am loading MainWindow in App_Startup (). I wanted to show the progress bar while loading the window. But it is not working : void App_Startup(object sender, StartupEventArgs e) { Thread ...
-1
votes
2answers
169 views

How to put a child thread to sleep without freezing the UI thread in a WPF application?

I have a WPF application and I have individual threads running to accomplish tasks and I would like to have the current thread to go to sleep something like, Thread.CurrentThread.Sleep(10000) I ...
1
vote
2answers
150 views

long background process refreshing ui wpf

I have long search operations which periodically updates UI (found occurence -> Update UI) I've tried to realize it many ways: async/await public void PushButton() { await AsyncSearchAll(); } ...
0
votes
3answers
66 views

Exception when update a progressbar in a Background Worker

I created a wpf application. In my application, i open a windows and i copy in background some files. I would like to display and update a progressbar during thos copy. I tried to use a ...
1
vote
3answers
143 views

WPF threads and tasks on textchanged event

Using Visual Studio 2012 ulti, C# .NET WPF. Using Tasks in my code on winforms used to be simple. All I would do is create a delegate, create a function for my code, create a task and the event ...
1
vote
3answers
85 views

Abort long running thread in button click event

In my WPF application, I have a long running process which converts files to PDFs using BlueBeam Q Server. When the process takes place, it should not freeze, so the below code has written to take ...
2
votes
2answers
115 views

C# WPF application freezed over time

I have built a C# WPF application that has several background threads which are doing the following tasks: several threads where each contains a TCP server running in a while loop and each of them ...
0
votes
1answer
76 views

Life time of C# Thread that owns WPF Window

I have an UI thread that creates WPF window and Show it. Sample code will be: Thread thread = new Thread(() => { Window window = new Window(); window.Show(); ...
0
votes
0answers
189 views

WPF VB.NET: Simplest way to update UI while processing data in a main loop?

I'm working on a WPF project in VB.NET (2012). I'm gathering data from a controller and I want to display it on my UI. The data is collected via a main loop, which I run when the app starts up by ...

1 2 3 4 5 19