Click here to Skip to main content
15,922,015 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Is there similar properity like Anchor Properity in WPF? Pin
MIHAI_MTZ28-Jul-08 21:10
MIHAI_MTZ28-Jul-08 21:10 
GeneralRe: Is there similar properity like Anchor Properity in WPF? Pin
bkbharani28-Jul-08 21:13
bkbharani28-Jul-08 21:13 
AnswerRe: Is there similar properity like Anchor Properity in WPF? Pin
Jammer29-Jul-08 1:36
Jammer29-Jul-08 1:36 
QuestionWPF Hierarchical Data Templates are killing me Pin
gantww26-Jul-08 17:32
gantww26-Jul-08 17:32 
AnswerRe: WPF Hierarchical Data Templates are killing me Pin
MIHAI_MTZ28-Jul-08 1:17
MIHAI_MTZ28-Jul-08 1:17 
GeneralRe: WPF Hierarchical Data Templates are killing me Pin
gantww28-Jul-08 13:37
gantww28-Jul-08 13:37 
QuestionWPF hyperlink Click event Pin
Suj_7825-Jul-08 4:45
Suj_7825-Jul-08 4:45 
AnswerRe: WPF hyperlink Click event Pin
Super Lloyd27-Jul-08 21:11
Super Lloyd27-Jul-08 21:11 
Without having tryed to reproduce your issue I suspect that the link would only work if it is in a focused control and that it is not the case when you first click.

Setting the focus reliably can only be done in the Loaded event, as it is well undocumented! Wink | ;) , I suggest you write something as follow:

MyControl()
{
Loaded += (sender, e) => { Focus(); };
}

A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station....
_________________________________________________________
My programs never have bugs, they just develop random features.

QuestionWPF Animation. Pin
ciacia24-Jul-08 20:13
ciacia24-Jul-08 20:13 
AnswerRe: WPF Animation. Pin
Jammer25-Jul-08 0:30
Jammer25-Jul-08 0:30 
QuestionFocus issue Pin
Alex Skye24-Jul-08 7:41
Alex Skye24-Jul-08 7:41 
AnswerRe: Focus issue Pin
The Only Nock8-Aug-08 7:33
The Only Nock8-Aug-08 7:33 
QuestionMaintaing Session between WPF browser application and WCF service Pin
puneet.priyadarshi24-Jul-08 3:50
puneet.priyadarshi24-Jul-08 3:50 
Question[Message Deleted] Pin
C#_Programmer23-Jul-08 21:14
C#_Programmer23-Jul-08 21:14 
AnswerRe: color of wpf listview column Pin
Pete O'Hanlon24-Jul-08 4:33
mvePete O'Hanlon24-Jul-08 4:33 
GeneralRe: color of wpf listview column Pin
C#_Programmer24-Jul-08 8:32
C#_Programmer24-Jul-08 8:32 
GeneralRe: color of wpf listview column Pin
Pete O'Hanlon24-Jul-08 8:53
mvePete O'Hanlon24-Jul-08 8:53 
GeneralRe: color of wpf listview column Pin
Jammer24-Jul-08 22:52
Jammer24-Jul-08 22:52 
GeneralRe: color of wpf listview column Pin
Pete O'Hanlon24-Jul-08 23:59
mvePete O'Hanlon24-Jul-08 23:59 
GeneralRe: color of wpf listview column Pin
Jammer25-Jul-08 0:16
Jammer25-Jul-08 0:16 
QuestionSession state maintanace in wpf browser application Pin
puneet.priyadarshi23-Jul-08 20:35
puneet.priyadarshi23-Jul-08 20:35 
AnswerRe: Session state maintanace in wpf browser application Pin
John_Adams24-Jul-08 23:38
John_Adams24-Jul-08 23:38 
QuestionUser Control inside other User Control problem Pin
edu_fidi23-Jul-08 20:07
edu_fidi23-Jul-08 20:07 
AnswerRe: User Control inside other User Control problem Pin
Jammer24-Jul-08 11:49
Jammer24-Jul-08 11:49 
GeneralRe: User Control inside other User Control problem Pin
edu_fidi24-Jul-08 12:01
edu_fidi24-Jul-08 12:01 

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.