Click here to Skip to main content
15,895,799 members
Home / Discussions / C#
   

C#

 
AnswerRe: Socket Programming Pin
Septimus Hedgehog3-Jun-13 3:22
Septimus Hedgehog3-Jun-13 3:22 
QuestionC# Fill comboBox with DB content Pin
tizziCerutti2-Jun-13 1:45
tizziCerutti2-Jun-13 1:45 
AnswerRe: C# Fill comboBox with DB content Pin
Boipelo2-Jun-13 2:20
Boipelo2-Jun-13 2:20 
AnswerRe: C# Fill comboBox with DB content Pin
Anna King3-Jun-13 2:47
professionalAnna King3-Jun-13 2:47 
AnswerRe: C# Fill comboBox with DB content Pin
BobJanova3-Jun-13 4:12
BobJanova3-Jun-13 4:12 
GeneralRe: C# Fill comboBox with DB content Pin
tizziCerutti10-Jun-13 21:55
tizziCerutti10-Jun-13 21:55 
AnswerRe: C# Fill comboBox with DB content Pin
Amol_B4-Jun-13 19:41
professionalAmol_B4-Jun-13 19:41 
Question[Solved] Binding to data that will be resloved asyncronously Pin
AlphaDeltaTheta1-Jun-13 3:18
AlphaDeltaTheta1-Jun-13 3:18 
Hi all,
Just got a view and a viewmodel to wire-up. The view needs to be bound to some properties that will be resolved asyncly after the execution of a certain command.

Ok, I wrote all the stuff but now i'm confused with how to declare the binding???
Any ideas????

Here's just a skeleton
View -
initially just a textbox and a ok button. On clicking the ok button, the results are displayed and the command to resolve values are sent to the viewmodel.

In viewmodel,
C#
public class MainViewModel : ViewModelBase<MainViewModel>
{

	//properties that are to be resolved

	private string _data;
	private int _time;

	public string Data
	{
		get
		{
			return _data;
		}
			set
		{
			_data = value;
			NotifyPropertyChange("Data");
		}
	}

	//and so on...
}


I need the value of a Textblock to be bound with "Data". But that will be resolved after a while...
Out of ideas!Confused | :confused: Please help.

modified 4-Jun-13 12:51pm.

AnswerRe: Binding to data that will be resloved asyncronously Pin
Abhinav S1-Jun-13 7:35
Abhinav S1-Jun-13 7:35 
GeneralRe: Binding to data that will be resloved asyncronously Pin
AlphaDeltaTheta1-Jun-13 15:22
AlphaDeltaTheta1-Jun-13 15:22 
AnswerRe: Binding to data that will be resloved asyncronously Pin
Anna King3-Jun-13 2:55
professionalAnna King3-Jun-13 2:55 
AnswerRe: Binding to data that will be resloved asyncronously Pin
BobJanova3-Jun-13 4:14
BobJanova3-Jun-13 4:14 
GeneralRe: Binding to data that will be resloved asyncronously Pin
AlphaDeltaTheta3-Jun-13 17:15
AlphaDeltaTheta3-Jun-13 17:15 
QuestionC# Project On Image Processing Pin
Bishwajit Nepali31-May-13 23:47
Bishwajit Nepali31-May-13 23:47 
AnswerRe: C# Project On Image Processing Pin
Eddy Vluggen1-Jun-13 11:05
professionalEddy Vluggen1-Jun-13 11:05 
GeneralRe: C# Project On Image Processing Pin
Bishwajit Nepali24-Sep-13 8:29
Bishwajit Nepali24-Sep-13 8:29 
AnswerRe: C# Project On Image Processing Pin
Anna King3-Jun-13 3:00
professionalAnna King3-Jun-13 3:00 
AnswerRe: C# Project On Image Processing Pin
Pete O'Hanlon3-Jun-13 3:23
mvePete O'Hanlon3-Jun-13 3:23 
AnswerRe: C# Project On Image Processing Pin
Bishwajit Nepali3-Jun-13 6:12
Bishwajit Nepali3-Jun-13 6:12 
GeneralPracticing Passing Parameters Pin
N8tiv31-May-13 16:25
N8tiv31-May-13 16:25 
GeneralRe: Practicing Passing Parameters Pin
OriginalGriff31-May-13 21:15
mveOriginalGriff31-May-13 21:15 
GeneralRe: Practicing Passing Parameters Pin
N8tiv3-Jun-13 7:19
N8tiv3-Jun-13 7:19 
GeneralRe: Practicing Passing Parameters Pin
OriginalGriff3-Jun-13 7:59
mveOriginalGriff3-Jun-13 7:59 
GeneralRe: Practicing Passing Parameters Pin
Richard MacCutchan31-May-13 23:21
mveRichard MacCutchan31-May-13 23:21 
GeneralRe: Practicing Passing Parameters Pin
N8tiv3-Jun-13 1:02
N8tiv3-Jun-13 1:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.