Click here to Skip to main content
15,899,474 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: WPF ComboBox From Enum - Filter List Pin
SledgeHammer0113-Apr-13 14:48
SledgeHammer0113-Apr-13 14:48 
GeneralRe: WPF ComboBox From Enum - Filter List Pin
Mycroft Holmes13-Apr-13 20:36
professionalMycroft Holmes13-Apr-13 20:36 
GeneralRe: WPF ComboBox From Enum - Filter List Pin
SledgeHammer0113-Apr-13 20:42
SledgeHammer0113-Apr-13 20:42 
QuestionMaintain WPF Window Size across different resolution monitors Pin
Vimalsoft(Pty) Ltd9-Apr-13 23:47
professionalVimalsoft(Pty) Ltd9-Apr-13 23:47 
AnswerRe: Maintain WPF Window Size across different resolution monitors Pin
Jason Gleim11-Apr-13 10:11
professionalJason Gleim11-Apr-13 10:11 
GeneralRe: Maintain WPF Window Size across different resolution monitors Pin
Vimalsoft(Pty) Ltd11-Apr-13 10:17
professionalVimalsoft(Pty) Ltd11-Apr-13 10:17 
QuestionAsynchronous Design Issue Pin
Mycroft Holmes8-Apr-13 16:13
professionalMycroft Holmes8-Apr-13 16:13 
AnswerRe: Asynchronous Design Issue Pin
SledgeHammer018-Apr-13 18:44
SledgeHammer018-Apr-13 18:44 
I can't help but think "you're doing it wrong" if you are calling into a WCF service 15 - 20 times at start up to "load static data". Can you wrap it all into a single call? If you are using SOAP, you are sending a lot of useless crap back and forth. If you need data from calls 1,2,6 and 8 to do calls 13 - 27, you should still probably try to encapsulate it all into a single call into the WCF service to cut down on the data (speed it up). If you only have .NET clients, you can optimize it further by switching to NetTCPBinding and get rid of SOAP. If you need to support non .NET clients as well, I'd suggest REST / Json.

How much data are we talking? How often does this "static" data change? If its a lot of data and it doesn't change too frequently, I'd recommend implementing a timestamp / version scheme. Instead of calling 15 - 20 times into the service, you'd do something like "I have version 1.04 of the data. Is there a newer version?" If so, then download it and cache it locally.
GeneralRe: Asynchronous Design Issue Pin
Mycroft Holmes8-Apr-13 19:12
professionalMycroft Holmes8-Apr-13 19:12 
GeneralRe: Asynchronous Design Issue Pin
SledgeHammer018-Apr-13 19:15
SledgeHammer018-Apr-13 19:15 
GeneralRe: Asynchronous Design Issue Pin
Mycroft Holmes8-Apr-13 19:27
professionalMycroft Holmes8-Apr-13 19:27 
AnswerRe: Asynchronous Design Issue Pin
Abhinav S8-Apr-13 23:23
Abhinav S8-Apr-13 23:23 
GeneralRe: Asynchronous Design Issue Pin
Mycroft Holmes9-Apr-13 2:44
professionalMycroft Holmes9-Apr-13 2:44 
QuestionHow to Set ItemSource of Autocomplete Textbox when placed inside Datagrid and that datagrid having multiple rows??? Pin
Shwetank1237-Apr-13 20:00
Shwetank1237-Apr-13 20:00 
AnswerRe: How to Set ItemSource of Autocomplete Textbox when placed inside Datagrid and that datagrid having multiple rows??? Pin
Naz_Firdouse7-Apr-13 21:18
Naz_Firdouse7-Apr-13 21:18 
GeneralRe: How to Set ItemSource of Autocomplete Textbox when placed inside Datagrid and that datagrid having multiple rows??? Pin
Shwetank1237-Apr-13 21:27
Shwetank1237-Apr-13 21:27 
GeneralRe: How to Set ItemSource of Autocomplete Textbox when placed inside Datagrid and that datagrid having multiple rows??? Pin
Naz_Firdouse7-Apr-13 21:58
Naz_Firdouse7-Apr-13 21:58 
QuestionRe: How to Set ItemSource of Autocomplete Textbox when placed inside Datagrid and that datagrid having multiple rows??? Pin
Shwetank1237-Apr-13 22:23
Shwetank1237-Apr-13 22:23 
AnswerRe: How to Set ItemSource of Autocomplete Textbox when placed inside Datagrid and that datagrid having multiple rows??? Pin
Naz_Firdouse7-Apr-13 23:20
Naz_Firdouse7-Apr-13 23:20 
GeneralRe: How to Set ItemSource of Autocomplete Textbox when placed inside Datagrid and that datagrid having multiple rows??? Pin
Shwetank1237-Apr-13 23:25
Shwetank1237-Apr-13 23:25 
QuestionFile drag and drop in in-browser app Pin
CCB20106-Apr-13 3:26
CCB20106-Apr-13 3:26 
GeneralRe: File drag and drop in in-browser app Pin
CCB20108-Apr-13 10:35
CCB20108-Apr-13 10:35 
GeneralRe: File drag and drop in in-browser app Pin
SledgeHammer018-Apr-13 11:19
SledgeHammer018-Apr-13 11:19 
GeneralRe: File drag and drop in in-browser app Pin
CCB201010-Apr-13 2:55
CCB201010-Apr-13 2:55 
QuestionReturn key passed to a user control Pin
Mycroft Holmes2-Apr-13 14:44
professionalMycroft Holmes2-Apr-13 14:44 

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.