Click here to Skip to main content
15,917,062 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: How To Call A Method In A User Control Pin
Kevin Marois4-Aug-14 6:57
professionalKevin Marois4-Aug-14 6:57 
GeneralRe: How To Call A Method In A User Control Pin
Richard Deeming4-Aug-14 7:02
mveRichard Deeming4-Aug-14 7:02 
GeneralRe: How To Call A Method In A User Control Pin
Kevin Marois4-Aug-14 7:03
professionalKevin Marois4-Aug-14 7:03 
GeneralRe: How To Call A Method In A User Control Pin
Richard Deeming4-Aug-14 7:16
mveRichard Deeming4-Aug-14 7:16 
GeneralRe: How To Call A Method In A User Control Pin
SledgeHammer014-Aug-14 10:07
SledgeHammer014-Aug-14 10:07 
GeneralRe: How To Call A Method In A User Control Pin
Kevin Marois4-Aug-14 10:10
professionalKevin Marois4-Aug-14 10:10 
GeneralRe: How To Call A Method In A User Control Pin
SledgeHammer014-Aug-14 10:46
SledgeHammer014-Aug-14 10:46 
GeneralRe: How To Call A Method In A User Control Pin
Kevin Marois4-Aug-14 10:48
professionalKevin Marois4-Aug-14 10:48 
AnswerRe: How To Call A Method In A User Control Pin
_Maxxx_4-Aug-14 18:38
professional_Maxxx_4-Aug-14 18:38 
GeneralRe: How To Call A Method In A User Control Pin
SledgeHammer016-Aug-14 9:27
SledgeHammer016-Aug-14 9:27 
QuestionHow to send a fax using wpf? Pin
Kesavanksk24-Jul-14 23:41
Kesavanksk24-Jul-14 23:41 
AnswerRe: How to send a fax using wpf? Pin
Pete O'Hanlon25-Jul-14 0:54
mvePete O'Hanlon25-Jul-14 0:54 
GeneralRe: How to send a fax using wpf? Pin
Mycroft Holmes25-Jul-14 14:31
professionalMycroft Holmes25-Jul-14 14:31 
AnswerRe: How to send a fax using wpf? Pin
Afzaal Ahmad Zeeshan15-Aug-14 6:46
professionalAfzaal Ahmad Zeeshan15-Aug-14 6:46 
QuestionUnable to access DatePicker's SelectedDate property Pin
Suj_7822-Jul-14 3:26
Suj_7822-Jul-14 3:26 
AnswerRe: Unable to access DatePicker's SelectedDate property Pin
SledgeHammer0123-Jul-14 5:14
SledgeHammer0123-Jul-14 5:14 
QuestionProblème with TreeView Pin
Mouaici Mohamed22-Jul-14 1:38
Mouaici Mohamed22-Jul-14 1:38 
AnswerRe: Problème with TreeView Pin
Mycroft Holmes23-Jul-14 1:08
professionalMycroft Holmes23-Jul-14 1:08 
GeneralRe: Problème with TreeView Pin
Mouaici Mohamed23-Jul-14 1:14
Mouaici Mohamed23-Jul-14 1:14 
GeneralRe: Problème with TreeView Pin
Mycroft Holmes23-Jul-14 3:00
professionalMycroft Holmes23-Jul-14 3:00 
QuestionPass a window to a dialog as owner Pin
Mycroft Holmes21-Jul-14 22:54
professionalMycroft Holmes21-Jul-14 22:54 
I am attempting to create a common WPF logon dialog. I have the dialog as a separate DLL which access a service and returns the user permissions. This works except the dialog displays as an independent window. I want to pass the main window to the dialog as the owner.

I call the logon dll from the main viewmodel
C#
public void ShowLogon()
{
    new IFALogon.LogonDlg().DoLogon(MainUI.AppID, "Finance NPA");
    if (IFALogon.LogonVM.DBUser == null)
    {
        Exit();
    }
    else
    {
    }
}


How can I pass the main view to this DLL.
Never underestimate the power of human stupidity
RAH

AnswerRe: Pass a window to a dialog as owner Pin
SledgeHammer0122-Jul-14 4:55
SledgeHammer0122-Jul-14 4:55 
GeneralRe: Pass a window to a dialog as owner Pin
Mycroft Holmes23-Jul-14 1:06
professionalMycroft Holmes23-Jul-14 1:06 
QuestionPass selection to container Pin
Mycroft Holmes15-Jul-14 21:55
professionalMycroft Holmes15-Jul-14 21:55 
AnswerRe: Pass selection to container Pin
SledgeHammer0116-Jul-14 5:09
SledgeHammer0116-Jul-14 5:09 

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.