1
vote
0answers
27 views

Nhibernate threading with WPF databinding

How should I do nhibernate threading given the following facts: nhiberante is not thread safe nhibernate entities are databound to a WPF UI, so we must use the UI thread. Some nhibernate queries are ...
0
votes
0answers
50 views

WPF, MVVM: How to handle heavy(slow) initialization

In my viewmodels, I generally need to fetch data from database or check some ports and connections to access some hardware which takes about 3-10 seconds. If I put that initialization to my VM ...
0
votes
1answer
60 views

Error in Dispatcher.Invoke

Yes, i'm sorry. So, i've a new WPF project, that will show once it starts to stream an IP camera. To do this I use the string that shows me only an image. However, to ensure that it becomes video, I ...
0
votes
2answers
51 views

How to disable textbox while another thread is running

I want to disable the textbox while a thread is running. After the execution of thread has finished the textbox on the form should be enabled. CODE Thread thread = new Thread(new ...
0
votes
0answers
20 views

Create paragraph in subthread to FlowDocument in main thread

I´m creating a Thread to do some long run process and building a Paragraph that I shall show in a RichTextBox. Normally this is simply done by: Paragraph paragraph = new Paragraph(); ...
0
votes
1answer
29 views

I want to add a progressbar

<Window x:Class="ASTHENIA.Loading" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Loading" Height="300" ...
2
votes
2answers
80 views

asynchronous UI update from ViewModel in WPF

I am having a problem with getting data from db and showing in UI asynchronously. I am using MVVM light, when I click the button, action is triggered in ViewModel: private void SearchQuery(string ...
0
votes
2answers
133 views

when I raise event it is always null

In my mainViewModel I suscribe on event : var uc = new MyUserControl(); uc.ViewModel.ValueTypeChangedEvent += OnValueTypeChanged; Control05 = uc; StartMeasuring2(); My backgroundWorker is: ...
0
votes
0answers
15 views

IsRegistered method on UnityContainer when loading modules on different threads

Have a multithreaded WPF application. The loading of the modules is based on priority assigned to the modules. Only the high priority modules get loaded on the UI thread and the rest of the modules ...
0
votes
1answer
57 views

calling thread access error

I have 2 viewModels - one for main program and another for my user control. When I dynamically create user control, I start background thread : private void BackgroundWorkerDoWork(object sender, ...
1
vote
3answers
86 views

Any way to programmatically build UI elements off the UI thread?

I know I need to create and add elements to another element on the main UI thread in WPF and you can easily do this when on another thread using the Dispatcher. However I would like to build my ...
0
votes
2answers
60 views

Pause and Resume the execution in WPF

Is there any way to pause and resume the execution in WPF App [especially in ViewModel class]? I have tried with Auto and ManualResetEvent class. But it is not pausing at the point where I want to ...
-2
votes
1answer
22 views

How to “translate” this code to WPF

I move application from WindowsForms to WPF. I have the following code: if (InvokeRequired) { Invoke(new Action<Version, Version, XDocument>(ShowUpdateDialog), ...
2
votes
2answers
79 views

Update progress bar in main thread in MVVM

In my application I perform a long operation and I want to show a progress of the operation. In long operation I use 3rd-party dll. Unfortunately that dll doesn't support calls from non-main thread. ...
0
votes
1answer
24 views

Is the error/issue I am having caused by not using the Dispatcher?

I am using this wonderful framework for doing modal dialogs in WPF. Using this framework, I am trying to get a modal dialog to overlay another modal dialog when a user clicks a button from within the ...
0
votes
2answers
71 views

Dispatcher.Invoke() vs not creating any thread

In a WPF application, what is the difference between calling a method directly vs passing it to Dispatcher.Invoke()? Based on what I have read so far, both are executed in the same UI thread, aren't ...
1
vote
1answer
46 views

Block multiple UI threads for a dialog in WPF

In the moment, I have a problem with multiple UI threads in WPF. I have a third party component, which I need to use in a project. Unfortunately, every function of the component needs to be executed ...
0
votes
1answer
72 views

serialport continuous real time data c#

Hi I'm trying to program a simple C# WPF that displays time information on a virtual scoreboard in real time from a timing system. I'm fairly new to programming so in depth explanation would be ...
0
votes
1answer
39 views

Adding stackpanels to a stackpanel from another thread (with dispatch?)

I've already found several topics about multithreading in wpf and got most things to work with dispatch, but there is one thing I havent figured out yet. I have a stackpanel called "stackpanel1" to ...
1
vote
1answer
71 views

Need help transforming a blocking operation to a threaded one in C#/WPF

Background There is an external program which I do not control that writes tab-delimited lines to a "PRN" file (Test_1234.prn) every 8 seconds. My program's job is read that file and write the nth ...
0
votes
1answer
45 views

How to access & use an object which has been created on a different thread in WPF

I am having following scenario that I need to show preview option in my application like what ms-word does. When we click the info option under File menu item, then preview of document is shown. In ...
1
vote
2answers
44 views

Updating Main UI from a usercontrol in WPF with databinding and multithreading

I'm just starting with WPF and still don't have all the facts about it clear. Right now I'm messing around with data binding and threading to update data and represent it on a time basis. I have a ...
1
vote
2answers
90 views

WPF UI not getting updated when using threads

I have created an application with threads( this is my first Threading application) i have a WPF which on button click will open an excel take the ProductID's and search it in the website and return ...
-4
votes
0answers
39 views

How to have a dynamic text box using threads? [closed]

I am using WPF to create an application that receives a determined weight from a scale. I need a text on the screen to dinamically shows the value that this scale is inputting. I believe using threads ...
2
votes
1answer
67 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
2answers
32 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
52 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
50 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
80 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
35 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
78 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
76 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
53 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
65 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
127 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
55 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
45 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
138 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
91 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
133 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
277 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
33 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
61 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
88 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
63 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
73 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
110 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
91 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
51 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
214 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(() => ...

1 2 3 4 5 19