Click here to Skip to main content
15,892,161 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Announcing SQL Server on Linux Pin
Kornfeld Eliyahu Peter7-Mar-16 21:30
professionalKornfeld Eliyahu Peter7-Mar-16 21:30 
GeneralRe: Announcing SQL Server on Linux Pin
pkfox7-Mar-16 21:55
professionalpkfox7-Mar-16 21:55 
GeneralRe: Announcing SQL Server on Linux Pin
Kornfeld Eliyahu Peter7-Mar-16 22:00
professionalKornfeld Eliyahu Peter7-Mar-16 22:00 
GeneralRe: Announcing SQL Server on Linux Pin
pkfox7-Mar-16 22:07
professionalpkfox7-Mar-16 22:07 
GeneralRe: Announcing SQL Server on Linux Pin
jsc428-Mar-16 2:47
professionaljsc428-Mar-16 2:47 
GeneralRe: Announcing SQL Server on Linux Pin
Nish Nishant8-Mar-16 3:17
sitebuilderNish Nishant8-Mar-16 3:17 
GeneralRe: Announcing SQL Server on Linux Pin
pkfox8-Mar-16 6:54
professionalpkfox8-Mar-16 6:54 
RantD'ooh Pin
Marco Bertschi7-Mar-16 10:09
protectorMarco Bertschi7-Mar-16 10:09 
Started a pet project last weekend. I want to have a wizard control which just sucks up user controls and displays them in a given order with a given title in the side bar. I know something like that alread does exist on CP, but I
1) Want to make one on my own. My time, don't tell me what to do with it Laugh | :laugh:
2) I'm not sure how good the existing one supports page validation.


Anyways, I was debugging the first (very raw) build, and for some reason just the first item in the TOC was showing a title:

C#
WizardViewModel model = new WizardViewModel();
            model.WizardTitle = "Test";
            model.WizardDescription = "Ein schlecht gestylter Beispiel-Wizard.";

            WizardStepViewModel stepmodel = new WizardStepViewModel();
            stepmodel.Name = "Willkommen";
            stepmodel.Content = new Testdata.WelcomeScreen();

            WizardStepViewModel stepmodel2 = new WizardStepViewModel();
            stepmodel.Name = "Wizard-Zeug";
            stepmodel.Content = new Testdata.TestUserControl2();

            WizardStepViewModel stepmodel3 = new WizardStepViewModel();
            stepmodel.Name = "Zusammenfassung";
            stepmodel.Content = new Testdata.EndUserControl();

            model.WizardSteps = new List<WizardStepViewModel>() { stepmodel, stepmodel2, stepmodel3 };

            WizardControl.View.WizardControl ctrl = new View.WizardControl(model);
            this.MainGrid.Children.Add(ctrl);

You see why, don't ya.
D'Oh! | :doh: D'Oh! | :doh:

GeneralRe: D'ooh Pin
Pete O'Hanlon7-Mar-16 10:23
mvePete O'Hanlon7-Mar-16 10:23 
GeneralRe: D'ooh Pin
Sascha Lefèvre7-Mar-16 10:24
professionalSascha Lefèvre7-Mar-16 10:24 
GeneralRe: D'ooh Pin
Marco Bertschi7-Mar-16 20:25
protectorMarco Bertschi7-Mar-16 20:25 
GeneralRe: D'ooh Pin
Pete O'Hanlon7-Mar-16 21:03
mvePete O'Hanlon7-Mar-16 21:03 
GeneralRe: D'ooh Pin
Marco Bertschi7-Mar-16 21:05
protectorMarco Bertschi7-Mar-16 21:05 
GeneralRe: D'ooh Pin
Marc Clifton7-Mar-16 12:11
mvaMarc Clifton7-Mar-16 12:11 
GeneralRe: D'ooh Pin
glennPattonWork37-Mar-16 12:53
professionalglennPattonWork37-Mar-16 12:53 
GeneralRe: D'ooh Pin
Marco Bertschi7-Mar-16 20:24
protectorMarco Bertschi7-Mar-16 20:24 
GeneralRe: D'ooh Pin
BillWoodruff7-Mar-16 13:42
professionalBillWoodruff7-Mar-16 13:42 
GeneralRe: D'ooh Pin
wizardzz8-Mar-16 7:02
wizardzz8-Mar-16 7:02 
GeneralSkiddies... Pin
R. Giskard Reventlov7-Mar-16 9:38
R. Giskard Reventlov7-Mar-16 9:38 
GeneralRe: Skiddies... Pin
Richard Deeming7-Mar-16 22:47
mveRichard Deeming7-Mar-16 22:47 
GeneralPDF Page To LibreOffice Impress Page Pin
C-P-User-37-Mar-16 9:09
C-P-User-37-Mar-16 9:09 
GeneralRe: PDF Page To LibreOffice Impress Page Pin
Nagy Vilmos7-Mar-16 21:52
professionalNagy Vilmos7-Mar-16 21:52 
GeneralRe: PDF Page To LibreOffice Impress Page Pin
C-P-User-38-Mar-16 4:17
C-P-User-38-Mar-16 4:17 
QuestionIs ReSharper any good for Ionic (JavaScript and TypeScript development) Pin
James_Parsons7-Mar-16 7:56
James_Parsons7-Mar-16 7:56 
AnswerRe: Is ReSharper any good for Ionic (JavaScript and TypeScript development) Pin
Slacker0077-Mar-16 8:08
professionalSlacker0077-Mar-16 8: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.