public FormalinAddedLabel()
        {
            PageContent pageContent = new PageContent();
            FixedPage fixedPage = new FixedPage();

            StackPanel rowPanel = new StackPanel();
            rowPanel.Orientation = Orientation.Horizontal;
            rowPanel.Margin = new Thickness(10,5,5,5);

            FormalinAddedLabelPanel panel1 = new FormalinAddedLabelPanel();
            FormalinAddedLabelPanel panel2 = new FormalinAddedLabelPanel();
            FormalinAddedLabelPanel panel3 = new FormalinAddedLabelPanel();
            FormalinAddedLabelPanel panel4 = new FormalinAddedLabelPanel();

            rowPanel.Children.Add(panel1);
            rowPanel.Children.Add(panel2);
            rowPanel.Children.Add(panel3);
            rowPanel.Children.Add(panel4);

            fixedPage.Children.Add(rowPanel);
            ((System.Windows.Markup.IAddChild)pageContent).AddChild(fixedPage);
            this.Pages.Add(pageContent);
        }
Exemple #2
0
        public FormalinAddedLabel()
        {
            PageContent pageContent = new PageContent();
            FixedPage   fixedPage   = new FixedPage();

            StackPanel rowPanel = new StackPanel();

            rowPanel.Orientation = Orientation.Horizontal;
            rowPanel.Margin      = new Thickness(10, 5, 5, 5);

            FormalinAddedLabelPanel panel1 = new FormalinAddedLabelPanel();
            FormalinAddedLabelPanel panel2 = new FormalinAddedLabelPanel();
            FormalinAddedLabelPanel panel3 = new FormalinAddedLabelPanel();
            FormalinAddedLabelPanel panel4 = new FormalinAddedLabelPanel();

            rowPanel.Children.Add(panel1);
            rowPanel.Children.Add(panel2);
            rowPanel.Children.Add(panel3);
            rowPanel.Children.Add(panel4);

            fixedPage.Children.Add(rowPanel);
            ((System.Windows.Markup.IAddChild)pageContent).AddChild(fixedPage);
            this.Pages.Add(pageContent);
        }