Click here to Skip to main content
15,912,507 members
Home / Discussions / WPF
   

WPF

 
QuestionThe best way to display live log output to a WPF windows. Pin
Daudaka15-Apr-13 5:25
Daudaka15-Apr-13 5:25 
AnswerRe: The best way to display live log output to a WPF windows. Pin
Mycroft Holmes15-Apr-13 12:47
professionalMycroft Holmes15-Apr-13 12:47 
AnswerRe: The best way to display live log output to a WPF windows. Pin
Andreas X15-Apr-13 21:34
professionalAndreas X15-Apr-13 21:34 
QuestionButton sizes become small in a stackpanel Pin
Vimalsoft(Pty) Ltd13-Apr-13 22:52
professionalVimalsoft(Pty) Ltd13-Apr-13 22:52 
AnswerRe: Button sizes become small in a stackpanel Pin
Abhishek Sur20-Apr-13 1:46
professionalAbhishek Sur20-Apr-13 1:46 
GeneralRe: Button sizes become small in a stackpanel Pin
Vimalsoft(Pty) Ltd21-Apr-13 3:08
professionalVimalsoft(Pty) Ltd21-Apr-13 3:08 
GeneralRe: Button sizes become small in a stackpanel Pin
Abhishek Sur21-Apr-13 11:20
professionalAbhishek Sur21-Apr-13 11:20 
GeneralRe: Button sizes become small in a stackpanel Pin
Vimalsoft(Pty) Ltd22-Apr-13 1:27
professionalVimalsoft(Pty) Ltd22-Apr-13 1:27 
Questionlistview with many textboxes Pin
vaishali thaker11-Apr-13 22:50
vaishali thaker11-Apr-13 22:50 
AnswerRe: listview with many textboxes Pin
Abhinav S12-Apr-13 0:01
Abhinav S12-Apr-13 0:01 
AnswerRe: listview with many textboxes Pin
vaishali thaker15-Apr-13 1:16
vaishali thaker15-Apr-13 1:16 
QuestionWPF ComboBox From Enum - Filter List Pin
Kevin Marois11-Apr-13 19:31
professionalKevin Marois11-Apr-13 19:31 
AnswerRe: WPF ComboBox From Enum - Filter List Pin
Mycroft Holmes13-Apr-13 13:24
professionalMycroft Holmes13-Apr-13 13:24 
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 

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.