Click here to Skip to main content
15,891,763 members
Home / Discussions / C#
   

C#

 
AnswerRe: prevent method execution on design time using attributes Pin
Richard MacCutchan7-Nov-15 21:11
mveRichard MacCutchan7-Nov-15 21:11 
GeneralRe: prevent method execution on design time using attributes Pin
Gilbert Consellado8-Nov-15 1:33
professionalGilbert Consellado8-Nov-15 1:33 
AnswerRe: prevent method execution on design time using attributes Pin
OriginalGriff7-Nov-15 22:48
mveOriginalGriff7-Nov-15 22:48 
GeneralRe: prevent method execution on design time using attributes Pin
Gilbert Consellado8-Nov-15 1:35
professionalGilbert Consellado8-Nov-15 1:35 
GeneralRe: prevent method execution on design time using attributes Pin
OriginalGriff8-Nov-15 1:41
mveOriginalGriff8-Nov-15 1:41 
GeneralRe: prevent method execution on design time using attributes Pin
Gilbert Consellado8-Nov-15 3:31
professionalGilbert Consellado8-Nov-15 3:31 
GeneralRe: prevent method execution on design time using attributes Pin
Gilbert Consellado8-Nov-15 3:37
professionalGilbert Consellado8-Nov-15 3:37 
GeneralRe: prevent method execution on design time using attributes Pin
OriginalGriff8-Nov-15 4:03
mveOriginalGriff8-Nov-15 4:03 
That's not a good idea - since your control relies on it in order to work at all, it kinda breaks OOPs to make the container remember to call it.
I'd probably just change it to this:
C#
public void InitializeControl()
{
    if (!DesignMode)
    {
        Patient = Patient ?? new Patient();
        PatientContact = Patient.GetPatientContact();
        PatientImage = new Patient.PatientImage(Patient);
        pictureedit_patient.Image = PatientImage.GetPatientImage();

        PopulateCombos();
        InitValidation();

        Patient.PropertyChanged += Patient_PropertyChanged;
        InitControlBinding();
    }
}
So that the actual content didn't get filled in except in run mode.
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

GeneralRe: prevent method execution on design time using attributes Pin
Gilbert Consellado8-Nov-15 14:38
professionalGilbert Consellado8-Nov-15 14:38 
AnswerRe: prevent method execution on design time using attributes Pin
Nathan Minier9-Nov-15 3:18
professionalNathan Minier9-Nov-15 3:18 
Questiongdi+ shape is not a reference object in Arraylist? Pin
smallkubi7-Nov-15 5:47
smallkubi7-Nov-15 5:47 
AnswerRe: gdi+ shape is not a reference object in Arraylist? Pin
Richard MacCutchan7-Nov-15 6:14
mveRichard MacCutchan7-Nov-15 6:14 
GeneralRe: gdi+ shape is not a reference object in Arraylist? Pin
smallkubi7-Nov-15 14:01
smallkubi7-Nov-15 14:01 
GeneralRe: gdi+ shape is not a reference object in Arraylist? Pin
Richard MacCutchan7-Nov-15 21:07
mveRichard MacCutchan7-Nov-15 21:07 
AnswerRe: gdi+ shape is not a reference object in Arraylist? Pin
George Jonsson7-Nov-15 17:40
professionalGeorge Jonsson7-Nov-15 17:40 
GeneralRe: gdi+ shape is not a reference object in Arraylist? Pin
smallkubi7-Nov-15 22:06
smallkubi7-Nov-15 22:06 
GeneralRe: gdi+ shape is not a reference object in Arraylist? Pin
George Jonsson7-Nov-15 22:41
professionalGeorge Jonsson7-Nov-15 22:41 
Questioncontrol of child form when using showDialog() Pin
randor6-Nov-15 13:47
randor6-Nov-15 13:47 
AnswerRe: control of child form when using showDialog() Pin
Richard Andrew x646-Nov-15 14:30
professionalRichard Andrew x646-Nov-15 14:30 
GeneralRe: control of child form when using showDialog() Pin
randor7-Nov-15 11:46
randor7-Nov-15 11:46 
GeneralRe: control of child form when using showDialog() Pin
randor7-Nov-15 11:49
randor7-Nov-15 11:49 
AnswerRe: control of child form when using showDialog() Pin
Richard Andrew x647-Nov-15 11:55
professionalRichard Andrew x647-Nov-15 11:55 
AnswerRe: control of child form when using showDialog() Pin
BillWoodruff6-Nov-15 14:43
professionalBillWoodruff6-Nov-15 14:43 
GeneralRe: control of child form when using showDialog() Pin
John Torjo7-Nov-15 3:32
professionalJohn Torjo7-Nov-15 3:32 
QuestionEmbedding custom font to PDF using iTextsharp Pin
GauravDutta5-Nov-15 22:08
GauravDutta5-Nov-15 22:08 

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.