Tagged Questions
1
vote
1answer
61 views
Wait for async method without blocking the thread
How can i execute the UpdateTasklist() Method after the SubmitWorkitem() Method without blocking the thread?
private async void SubmitWorkitem(Workitem workitem)
{
await Task.Run(() => ...
1
vote
1answer
20 views
Is Window.Close() synchronous in WPF?
As the title states, I was wondering if the the Close() method on a window is synchronous or not.
I browsed msdn but was unable to find an answer.
Thanks in advance for your replies
1
vote
1answer
27 views
Make the TaskScheduler synchronously and run in the main thread
I'm looking for a way to create a TaskScheduler that runs synchronously in the main thread to allow WPF applications to be configured as single thread for debugging purpose.
Any idea?
For now I'm ...
0
votes
1answer
28 views
asynctargetingpack and webclient use in WPF
I am creating a sample app using vs2012 and targeting .net 4.0 and trying to use BCL portability pack for .net 4.
I have the following code
WebClient client = new WebClient();
string result = await ...
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 ...
2
votes
3answers
194 views
Why are Async callback executed in WPF UI thread
Regarding this piece of code :
static async Task<string> testc()
{
Console.WriteLine("helo async " + Thread.CurrentThread.ManagedThreadId);
await Task.Run(() => {
...
0
votes
4answers
42 views
Good way to handle login events in order
I have a login system which need to :
Connect.
Wait until it is connected.
Send a login request.
Wait for a response of this request.
Send another kind of request.
Wait for this request
Go on!
...
-1
votes
1answer
399 views
How to update gui in c# wpf from asynchronous method callback
I've search on stackoverflow and also in net and I couldn't find solution to my problem.
I read from a stream in async way. I want callback to update gui
[STAThread]
private void ...
0
votes
2answers
153 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(() =>
{
...
1
vote
3answers
208 views
Make WPF Image load async
I would like to load Gravatar-Images and set them from code behind to a WPF Image-Control.
So the code looks like
imgGravatar.Source = GetGravatarImage(email);
Where GetGravatarImage looks like:
...
0
votes
1answer
67 views
How to execute a particular part of code asynchronously in a class
I am creating a speech recognition Engine that's going to respond to user Commands.I have created a Button to enable and disable Speech recognition as per user convenience.I have used Dispose() of ...
0
votes
1answer
86 views
Background worker - get and set instance variable
I have a background worker that has the following code:
BackgroundWorker worker = sender as BackgroundWorker;
TcpClient tcp = new TcpClient("192.168.1.180", 1337);
int stepCount = 0;
if ...
0
votes
1answer
61 views
Trying to understand pattern to use with BeginInvoke()
I have two TextBlock’s that I am positioning consecutively on a Canvas. The first case works fine:
TextBlock text1 = new TextBlock();
text1.Text = "Not ";
text1.FontSize = 18;
Canvas.SetTop(text1, ...
2
votes
1answer
119 views
How to debug a WPF application with asynchronous data access and no Call Stack?
I have a large WPF application that uses the MVVM design pattern and asynchronous data access methods. It uses the old style asynchronous code with callback handlers and the IAsyncResult interface... ...
0
votes
1answer
64 views
wpf render gui async
i got an ItemsControl with an Expander in it and in the Expander are a view ProgressBars inclued. My problem is when i am loading the data (which is not my performance problem) and then i update ...
0
votes
2answers
140 views
C# Time Delay After User Input
I've got a custom control (inheriting from TextBox) that I'm working with in .NET 4.0.
What I need to be able to do is execute some code after the user has finished his input, e.g. one second after ...
6
votes
2answers
819 views
How to use the Microsoft.Bcl.Async right?
I use the Microsoft.Bcl.Async package in a project and this project is a referenced by another project that not use async features.
Now I become this error warning when I compile the solution (or ...
0
votes
3answers
422 views
Create and update UI elements Async Wpf
I'm trying to load serveral images async into the ui.
When an image is loaded (a bitmap is created form a path), the image should be set as the fill of a rectange on the window.
When i put the ...
1
vote
2answers
125 views
async await and shared objects
I'm using the async / await pattern to perform some CPU heavy operations on an object (my method is awaitable), which works as supposed without blocking the UI thread.
However, when i pass the object ...
2
votes
2answers
147 views
WPF UI updating threading issue
UPDATE
I have solved this problem. I found I wasn't properly synchronising access to the line and chart objects. Instead of locking them for the duration of the handler, I locked them only for the ...
0
votes
2answers
832 views
Windows Phone 8 Dispatcher.BeginInvoke not working async
I am new to async programming and to WP8 , this is my first app and I have some issues with Dispatcher.BeginInvoke(..)
In my code behind the view class, i am trying to load data in a Pivot scree ...
0
votes
1answer
96 views
How to get a WPF TextBlock to scroll where the Text property is set asynchronously?
I have a TextBlock, wrapped in a ScrollViewer, and the Text property of the TextBlock is set with the result of a Task. The scrollbars of the TextBlock do not adjust to the size of the text returned ...
2
votes
1answer
43 views
Why is my code not being reached after an await statment?
For some reason I cannot figure out, the code beyond my await statement in the following code is never reached. Why?
public class FileSystemUpdateSource : IUpdateSource
{
private ...
0
votes
1answer
91 views
Make Wpf more Smooth
I load a lage data fra a text File and display it in a Datatgrid,
the problem is that the windows is slow and not smootth,
how can i implemented the code below better?
the button Code:
...
1
vote
1answer
157 views
WPF MultiThread
I need to load a large file and present the data in a datagrid, but some how i can not load the file asynchronously.
the Button Code:
private async void MILoadLogFile_Click(object sender, ...
3
votes
3answers
341 views
Retrying asynchronous file upload on error
I'm trying to upload files in a WPF-application. Everything works fine if the server responds but the application will be used in an environment with "unsafe" internet connection. So I want to retry ...
1
vote
2answers
181 views
Async databinding of image, causes cross thread exception
I have a problem, with my WPF application.
I'm trying to databind an image field, in my gridview, with the image property from my viewmodel.
<DataGridTemplateColumn Header="Image" ...
1
vote
2answers
81 views
Where to put the async/unblocking in mvvm?
Many of the commands/events (just about everything other then a small amount of pure object changes) need to be run in a non-blocking fashion to stop the application from freezing.
Should the ...
0
votes
2answers
159 views
DispatcherObject cast woes and Async / ObservableCollection issues in WPF
The code below pulls out a bunch of records from an Access 2010 database; hence rolling my own connector bits. I've succeeded in doing the observablecollection and made it all bind up with nice drag ...
0
votes
2answers
109 views
Dispatcher.Invoke parameter throws IlegalOperationException
I have following code where I am getting IlegalOperationException because my parameter owns another thread. I know why I am getting this exception but I don't know how to solve this problem.
//called ...
0
votes
1answer
87 views
Waiting for XAML layout to complete
I am making some changes to a page (by adding/removing controls) and I want to continue with my code only when the layout is settled (all elements measured and arranged etc).
How do I do this? Is ...
1
vote
1answer
139 views
Using async / wait, UI Freezes after setting content
Got some problem and cant't get why it appears.
I'm using .net 4.5 / C# and I try to set Content to a ContentControl after an async function succeeded.
The main focus of what i want to to in that ...
1
vote
1answer
172 views
set WPF image visibile after itemcontrol binding is done (windows 8 style async)
I've create a user control the display an image followed by a itemcontrol in a stackpanel:
<StackPanel Orientation="Horizontal">
<Image x:Name="ActorIcon" ...
0
votes
1answer
204 views
How to make the whole application responsive rather than the individual UI Controls using async and await?
I am using async and await keywords to make an app responsive
I have the following code in the View when the property is raised in the ViewModel.
VIEW: Button Click Event
private async void ...
2
votes
1answer
117 views
“IsAsync” has no effect for slow property?
I have a slow data source, so I create it asynchronously. Also, many properties of my viewmodel are themselves slow. Hence, I make them asynchronous too (binding to a Telerik property grid):
...
1
vote
0answers
78 views
Multithreading in object hierarchy
I'm creating a LOB application in WPF using C# and MVVM. I have created factories to construct all of my objects and they work ok but they're slow for complex object graphs. I would like to know if ...
0
votes
2answers
724 views
Returning value from async Action invoked on Dispatcher
I'm developing a WPF XBAP application that provides API to user through JavaScript by using BrowserInteropHelper. After rewriting managed part in new async-await fashion there is a need to wait until ...
0
votes
1answer
81 views
Can BeginInvoke do the same thing as BackgroundWorker?
Can BeginInvoke do the same thing as a BackgroundWorker ? I mean aren't both having the same goal in the end which is doing async operations in a different thread ?
If i have a WPF windows.. and i ...
6
votes
1answer
582 views
UI Freeze when Implementing custom Asynchronous WCF call handling using tasks and callbacks in WPF application
I have a WPF MVVM Application. The View Model has a couple of properties bound to the view, and those properties are populated by data coming from a database directly or through a wcf service that ...
0
votes
2answers
638 views
Significance of declaring a WPF event handler as 'async' in C# 5
Imagine a WPF code-behind event handler:
<Button Click="OnButtonClick" />
In C# 4 you would declare your handler as:
private void OnButtonClick(object sender, RoutedEventArgs e) { ... }
In ...
1
vote
1answer
636 views
Async friendly DispatcherTimer wrapper/subclass
I have a DispatcherTimer running in my code that fire every 30 seconds to update system status from the server. The timer fires in the client even if I'm debugging my server code so if I've been ...
0
votes
0answers
154 views
Asynchronous bidirectional client/server model for WPF->Web
Ok, I know this might seem like a strange use case, but here goes...
We've got a connectivity-ensured LAN with a large number (30-50 on average) of the same thick-client apps deployed (WPF or ...
0
votes
1answer
102 views
SqlCommand.BeginExecuteNonQuery CallBack - WPF - Invoke Fails
From the code in the link getting an error on this line
this.Invoke(new DisplayInfoDelegate(DisplayStatus),
String.Format("Ready(last error: {0}", ex.Message));
Yes I ...
0
votes
1answer
153 views
WPF Dispatcher issue
I'm attempting to update my app to use WPF instead of WinForms and have a problem I need a few pointers as I can't figure out what is wrong....
The code below is from my Winform app which works fine
...
0
votes
1answer
82 views
Silverlight Application UI updating
Hi I have a problem when I am working on my Windows Phone silverlight C# application.
So I want to do something like this
Press a button on page one. The button click handler calls a async method ...
1
vote
1answer
1k views
Understanding the Dispatcher Queue
I think I need some help understanding the Dispatcher Queue.
When new work arrives it gets added at the beginning of the dispatcher queue and when the Dispatcher wants to process a working item it ...
1
vote
3answers
1k views
Loading Images asynchronous in C#
I'm working on a C# WPF application which loads a lot of images and displays it as thumbnails. I'd like to do it in a multi-threaded way. Therefore I tried to implement a BackgroundWorker.
The code ...
3
votes
2answers
716 views
How to wait for IObservable<T> to complete without blocking UI with Reactive Extensions?
I'm trying to update a piece of code so that it simulates modal dialogs and Reactive Extensions felt like a proper tool to do so, but I can't make it work.
Currently, the code looks something like ...
0
votes
2answers
584 views
Asynchronous Networking with C# and WPF
I am writing a wpf application to control an embedded device over TCP. Writing to the device is easy, but I am having trouble receiving packets.
I have created a tcp NetworkStream and am using ...
1
vote
2answers
163 views
Find a Storyboard instance generated dynamically (WPF)
I have a problem for finding a generated storyboard with its name.
I can't use a class variable because this code is called several times and the return is asynchronous.
You can see my other question ...




