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

WPF

 
QuestionIssue with accessing WPF user control dynamically Pin
prabodh_254-Dec-08 23:43
prabodh_254-Dec-08 23:43 
QuestionURGENT --- WPF Web Browser control ...how to detect the langauge on the web page like english, french etc Pin
tarun jindal4-Dec-08 18:53
tarun jindal4-Dec-08 18:53 
QuestionDrawing Performance Pin
yanairon4-Dec-08 13:19
yanairon4-Dec-08 13:19 
AnswerRe: Drawing Performance Pin
Mohammad Dayyan5-Dec-08 1:38
Mohammad Dayyan5-Dec-08 1:38 
GeneralRe: Drawing Performance Pin
yanairon5-Dec-08 7:53
yanairon5-Dec-08 7:53 
GeneralRe: Drawing Performance Pin
Mohammad Dayyan5-Dec-08 9:16
Mohammad Dayyan5-Dec-08 9:16 
QuestionHyperlinks in WPF seem enabled but do not open using XAML... what am I missing? Pin
Member 1854264-Dec-08 13:02
Member 1854264-Dec-08 13:02 
AnswerRe: Hyperlinks in WPF seem enabled but do not open using XAML... what am I missing? Pin
Mohammad Dayyan5-Dec-08 1:33
Mohammad Dayyan5-Dec-08 1:33 
I've used this way :

XAML:
<Hyperlink Click="Hyperlink_Click" NavigateUri="http://www.mds-soft.persianblog.ir/"><Run 
  Text="Mohammad Dayyan"/></Hyperlink>

C# :
private void Hyperlink_Click(object sender, RoutedEventArgs e)
{
    try
    {
        Hyperlink source = sender as Hyperlink;
        System.Diagnostics.Process.Start(source.NavigateUri.ToString());
    }
    catch (Exception ex)
    {
    	MessageBox.Show(ex.Message, "Exception", MessageBoxButton.OK);
    }
}

QuestionDrawing with custom Pen Pin
pym4-Dec-08 2:54
pym4-Dec-08 2:54 
AnswerRe: Drawing with custom Pen Pin
Mohammad Dayyan5-Dec-08 1:28
Mohammad Dayyan5-Dec-08 1:28 
QuestionReport definition file can't be opened Pin
Arijit Manna4-Dec-08 1:29
Arijit Manna4-Dec-08 1:29 
GeneralRe: Report definition file can't be opened Pin
Pete O'Hanlon4-Dec-08 2:04
mvePete O'Hanlon4-Dec-08 2:04 
GeneralRe: Report definition file can't be opened Pin
Arijit Manna5-Dec-08 19:40
Arijit Manna5-Dec-08 19:40 
QuestionDesigning WPF application in VS-2008 Pin
NeCroFire4-Dec-08 0:03
NeCroFire4-Dec-08 0:03 
AnswerRe: Designing WPF application in VS-2008 Pin
Mark Salsbery4-Dec-08 6:17
Mark Salsbery4-Dec-08 6:17 
QuestionLinq To SQL & WPF Cascading Comboboxes Pin
Member 44002433-Dec-08 7:36
Member 44002433-Dec-08 7:36 
QuestionLooking for this type of component in silverlight.... Pin
Goalie352-Dec-08 4:47
Goalie352-Dec-08 4:47 
AnswerRe: Looking for this type of component in silverlight.... Pin
Ge3ks22-Dec-08 3:50
Ge3ks22-Dec-08 3:50 
QuestionPlaying a *.MP3 file in WPF ? Pin
Mohammad Dayyan2-Dec-08 2:11
Mohammad Dayyan2-Dec-08 2:11 
AnswerRe: Playing a *.MP3 file in WPF ? Pin
Mark Salsbery2-Dec-08 6:28
Mark Salsbery2-Dec-08 6:28 
AnswerRe: Playing a *.MP3 file in WPF ? Pin
Paul Conrad2-Dec-08 6:59
professionalPaul Conrad2-Dec-08 6:59 
AnswerRe: Playing a *.MP3 file in WPF ? Pin
Pete O'Hanlon2-Dec-08 9:01
mvePete O'Hanlon2-Dec-08 9:01 
GeneralRe: Playing a *.MP3 file in WPF ? Pin
Jammer2-Dec-08 22:55
Jammer2-Dec-08 22:55 
GeneralRe: Playing a *.MP3 file in WPF ? Pin
Mohammad Dayyan3-Dec-08 8:18
Mohammad Dayyan3-Dec-08 8:18 
QuestionSending dll Pin
Dushan1232-Dec-08 1:57
Dushan1232-Dec-08 1:57 

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.