• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C# LayoutOrientation类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中LayoutOrientation的典型用法代码示例。如果您正苦于以下问题:C# LayoutOrientation类的具体用法?C# LayoutOrientation怎么用?C# LayoutOrientation使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



LayoutOrientation类属于命名空间,在下文中一共展示了LayoutOrientation类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: InitializeWidget

        private void InitializeWidget(LayoutOrientation orientation)
        {
            TitleImage = new ImageBox();
            TitleImage.Name = "TitleImage";
            TouchToStartText = new Label();
            TouchToStartText.Name = "TouchToStartText";

            // TitleImage
            TitleImage.Image = new ImageAsset("/Application/assets/images/UI/header.png");
            TitleImage.ImageScaleType = ImageScaleType.Center;

            // TouchToStartText
            TouchToStartText.TextColor = new UIColor(255f / 255f, 255f / 255f, 255f / 255f, 255f / 255f);
            TouchToStartText.Font = new UIFont(FontAlias.System, 25, FontStyle.Regular);
            TouchToStartText.LineBreak = LineBreak.Character;
            TouchToStartText.HorizontalAlignment = HorizontalAlignment.Center;

            // TitleScene
            this.RootWidget.AddChildLast(TitleImage);
            this.RootWidget.AddChildLast(TouchToStartText);
            this.Showing += new EventHandler(onShowing);
            this.Shown += new EventHandler(onShown);

            SetWidgetLayout(orientation);

            UpdateLanguage();
        }
开发者ID:phoenixperry,项目名称:crystallography,代码行数:27,代码来源:TitleScene.composer.cs


示例2: InitializeWidget

        private void InitializeWidget(LayoutOrientation orientation)
        {
            Button_1 = new Button();
            Button_1.Name = "Button_1";
            Label_1 = new Label();
            Label_1.Name = "Label_1";

            // Button_1
            Button_1.TextColor = new UIColor(0f / 255f, 0f / 255f, 0f / 255f, 255f / 255f);
            Button_1.TextFont = new UIFont(FontAlias.System, 25, FontStyle.Regular);

            // Label_1
            Label_1.TextColor = new UIColor(0f / 255f, 0f / 255f, 0f / 255f, 255f / 255f);
            Label_1.Font = new UIFont(FontAlias.System, 38, FontStyle.Regular);
            Label_1.LineBreak = LineBreak.Character;
            Label_1.HorizontalAlignment = HorizontalAlignment.Center;

            // MainScene
            this.RootWidget.AddChildLast(Button_1);
            this.RootWidget.AddChildLast(Label_1);

            SetWidgetLayout(orientation);

            UpdateLanguage();
        }
开发者ID:nakamura001,项目名称:PlayStationMobile-UISampleCode,代码行数:25,代码来源:MainScene.composer.cs


示例3: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
                case LayoutOrientation.Vertical:
                    this.SetSize(36, 214);
                    this.Anchors = Anchors.None;

                    ScoreText.SetPosition(382, 71);
                    ScoreText.SetSize(214, 36);
                    ScoreText.Anchors = Anchors.None;
                    ScoreText.Visible = true;

                    break;

                default:
                    this.SetSize(214, 36);
                    this.Anchors = Anchors.None;

                    ScoreText.SetPosition(0, 0);
                    ScoreText.SetSize(214, 36);
                    ScoreText.Anchors = Anchors.None;
                    ScoreText.Visible = true;

                    break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:phoenixperry,项目名称:crystallography,代码行数:28,代码来源:ScorePanel.composer.cs


示例4: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
                case LayoutOrientation.Vertical:
                    this.SetPosition(0, 0);
                    this.SetSize(544, 960);
                    this.Anchors = Anchors.None;

                    playerHp.SetPosition(48, 512);
                    playerHp.SetSize(362, 16);
                    playerHp.Anchors = Anchors.Height;
                    playerHp.Visible = true;

                    Label_1.SetPosition(0, 508);
                    Label_1.SetSize(214, 36);
                    Label_1.Anchors = Anchors.None;
                    Label_1.Visible = true;

                    Label_2.SetPosition(0, 0);
                    Label_2.SetSize(214, 36);
                    Label_2.Anchors = Anchors.None;
                    Label_2.Visible = true;

                    enemyHp.SetPosition(199, 0);
                    enemyHp.SetSize(362, 16);
                    enemyHp.Anchors = Anchors.Height;
                    enemyHp.Visible = true;

                    break;

                default:
                    this.SetPosition(0, 0);
                    this.SetSize(960, 544);
                    this.Anchors = Anchors.None;

                    playerHp.SetPosition(88, 516);
                    playerHp.SetSize(200, 16);
                    playerHp.Anchors = Anchors.Height;
                    playerHp.Visible = true;

                    Label_1.SetPosition(0, 505);
                    Label_1.SetSize(88, 38);
                    Label_1.Anchors = Anchors.None;
                    Label_1.Visible = true;

                    Label_2.SetPosition(0, 0);
                    Label_2.SetSize(88, 36);
                    Label_2.Anchors = Anchors.None;
                    Label_2.Visible = true;

                    enemyHp.SetPosition(88, 10);
                    enemyHp.SetSize(850, 16);
                    enemyHp.Anchors = Anchors.Height;
                    enemyHp.Visible = true;

                    break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:tomocha,项目名称:vitaShootingGUD,代码行数:60,代码来源:hpDialog.composer.cs


示例5: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
            case LayoutOrientation.Vertical:
                this.SetSize(50, 200);
                this.Anchors = Anchors.None;

                Label_Story.SetPosition(-86, 0);
                Label_Story.SetSize(100, 36);
                Label_Story.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                Label_Story.Visible = true;

                break;

            default:
                this.SetSize(200, 50);
                this.Anchors = Anchors.None;

                Label_Story.SetPosition(8, 7);
                Label_Story.SetSize(200, 35);
                Label_Story.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                Label_Story.Visible = true;

                break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:elliottsb,项目名称:psvreader,代码行数:28,代码来源:StoryNameListItem.composer.cs


示例6: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
                case LayoutOrientation.Vertical:
                    this.SetSize(100, 100);
                    this.Anchors = Anchors.None;

                    Button_1.SetPosition(-68, 21);
                    Button_1.SetSize(214, 56);
                    Button_1.Anchors = Anchors.None;
                    Button_1.Visible = true;

                    break;

                default:
                    this.SetSize(100, 100);
                    this.Anchors = Anchors.None;

                    Button_1.SetPosition(12, 6);
                    Button_1.SetSize(76, 88);
                    Button_1.Anchors = Anchors.Top;
                    Button_1.Visible = true;

                    break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:phoenixperry,项目名称:crystallography,代码行数:28,代码来源:LevelSelectItem.composer.cs


示例7: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
                case LayoutOrientation.Vertical:
                    this.SetSize(544, 960);
                    this.Anchors = Anchors.None;

                    ImageBox_1.SetPosition(364, 123);
                    ImageBox_1.SetSize(200, 200);
                    ImageBox_1.Anchors = Anchors.None;
                    ImageBox_1.Visible = true;

                    break;

                default:
                    this.SetSize(925, 511);
                    this.Anchors = Anchors.None;

                    ImageBox_1.SetPosition(19, 12);
                    ImageBox_1.SetSize(886, 486);
                    ImageBox_1.Anchors = Anchors.None;
                    ImageBox_1.Visible = true;

                    break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:phoenixperry,项目名称:crystallography,代码行数:28,代码来源:instruction5Panel.composer.cs


示例8: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
                case LayoutOrientation.Vertical:
                    this.SetSize(544, 960);
                    this.Anchors = Anchors.None;

                    Label_1.SetPosition(0, 0);
                    Label_1.SetSize(214, 36);
                    Label_1.Anchors = Anchors.None;
                    Label_1.Visible = true;

                    break;

                default:
                    this.SetSize(530, 426);
                    this.Anchors = Anchors.None;

                    Label_1.SetPosition(0, 0);
                    Label_1.SetSize(214, 36);
                    Label_1.Anchors = Anchors.None;
                    Label_1.Visible = true;

                    break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:uavos,项目名称:jsw,代码行数:28,代码来源:Panel_PFD.composer.cs


示例9: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
                case LayoutOrientation.Vertical:
                    this.SetSize(544, 960);
                    this.Anchors = Anchors.None;

                    ImageBox_1.SetPosition(385, 176);
                    ImageBox_1.SetSize(200, 200);
                    ImageBox_1.Anchors = Anchors.None;
                    ImageBox_1.Visible = true;

                    break;

                default:
                    this.SetSize(924, 511);
                    this.Anchors = Anchors.None;

                    ImageBox_1.SetPosition(105, -41);
                    ImageBox_1.SetSize(713, 594);
                    ImageBox_1.Anchors = Anchors.None;
                    ImageBox_1.Visible = true;

                    break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:phoenixperry,项目名称:crystallography,代码行数:28,代码来源:Insructions3.composer.cs


示例10: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
                case LayoutOrientation.Vertical:
                    this.SetSize(544, 960);
                    this.Anchors = Anchors.None;

                    ImageBox_1.SetPosition(380, 110);
                    ImageBox_1.SetSize(200, 200);
                    ImageBox_1.Anchors = Anchors.None;
                    ImageBox_1.Visible = true;

                    break;

                default:
                    this.SetSize(960, 544);
                    this.Anchors = Anchors.None;

                    ImageBox_1.SetPosition(-28, -235);
                    ImageBox_1.SetSize(1017, 849);
                    ImageBox_1.Anchors = Anchors.None;
                    ImageBox_1.Visible = true;

                    break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:phoenixperry,项目名称:crystallography,代码行数:28,代码来源:Instructions5.composer.cs


示例11: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
                case LayoutOrientation.Vertical:
                    this.SetSize(544, 960);
                    this.Anchors = Anchors.None;

                    ImageBox_1.SetPosition(491, 125);
                    ImageBox_1.SetSize(200, 200);
                    ImageBox_1.Anchors = Anchors.None;
                    ImageBox_1.Visible = true;

                    break;

                default:
                    this.SetSize(924, 511);
                    this.Anchors = Anchors.None;

                    ImageBox_1.SetPosition(163, -83);
                    ImageBox_1.SetSize(597, 678);
                    ImageBox_1.Anchors = Anchors.None;
                    ImageBox_1.Visible = true;

                    break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:phoenixperry,项目名称:crystallography,代码行数:28,代码来源:Instructions4.composer.cs


示例12: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
                case LayoutOrientation.Vertical:
                    this.SetSize(544, 960);
                    this.Anchors = Anchors.None;

                    ImageBox_1.SetPosition(263, 94);
                    ImageBox_1.SetSize(200, 200);
                    ImageBox_1.Anchors = Anchors.None;
                    ImageBox_1.Visible = true;

                    break;

                default:
                    this.SetSize(960, 544);
                    this.Anchors = Anchors.None;

                    ImageBox_1.SetPosition(25, -182);
                    ImageBox_1.SetSize(909, 909);
                    ImageBox_1.Anchors = Anchors.None;
                    ImageBox_1.Visible = true;

                    break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:phoenixperry,项目名称:crystallography,代码行数:28,代码来源:Instructions5.composer.cs


示例13: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
            case LayoutOrientation.Vertical:
                this.SetPosition(0, 0);
                this.SetSize(300, 500);
                this.Anchors = Anchors.None;

                download_url.SetPosition(583, 19);
                download_url.SetSize(360, 56);
                download_url.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                download_url.Visible = true;

                DownloadBtn.SetPosition(690, 16);
                DownloadBtn.SetSize(214, 56);
                DownloadBtn.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                DownloadBtn.Visible = true;

                EditableText_1.SetPosition(-99, 108);
                EditableText_1.SetSize(360, 56);
                EditableText_1.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                EditableText_1.Visible = true;

                EditableText_2.SetPosition(118, 124);
                EditableText_2.SetSize(360, 56);
                EditableText_2.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                EditableText_2.Visible = true;

                break;

            default:
                this.SetPosition(0, 0);
                this.SetSize(500, 300);
                this.Anchors = Anchors.None;

                download_url.SetPosition(49, 30);
                download_url.SetSize(419, 56);
                download_url.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                download_url.Visible = true;

                DownloadBtn.SetPosition(190, 216);
                DownloadBtn.SetSize(126, 56);
                DownloadBtn.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                DownloadBtn.Visible = true;

                EditableText_1.SetPosition(49, 124);
                EditableText_1.SetSize(188, 56);
                EditableText_1.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                EditableText_1.Visible = true;

                EditableText_2.SetPosition(287, 124);
                EditableText_2.SetSize(181, 56);
                EditableText_2.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                EditableText_2.Visible = true;

                break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:elliottsb,项目名称:psvreader,代码行数:60,代码来源:DownloadUI.composer.cs


示例14: InitializeWidget

        private void InitializeWidget(LayoutOrientation orientation)
        {
            Button_1 = new Button();
            Button_1.Name = "Button_1";
            Label_1 = new Label();
            Label_1.Name = "Label_1";

            // Button_1
            Button_1.TextColor = new UIColor(255f / 255f, 255f / 255f, 255f / 255f, 255f / 255f);
            Button_1.TextFont = new UIFont(FontAlias.System, 25, FontStyle.Regular);

            // Label_1
            Label_1.TextColor = new UIColor(255f / 255f, 255f / 255f, 255f / 255f, 255f / 255f);
            Label_1.Font = new UIFont(FontAlias.System, 25, FontStyle.Regular);
            Label_1.LineBreak = LineBreak.Character;
            Label_1.HorizontalAlignment = HorizontalAlignment.Center;

            // ErrorDialog
            this.AddChildLast(Button_1);
            this.AddChildLast(Label_1);
            this.ShowEffect = new BunjeeJumpEffect()
            {
            };
            this.HideEffect = new TiltDropEffect();

            SetWidgetLayout(orientation);

            UpdateLanguage();
        }
开发者ID:khiraiwa,项目名称:psm-avi_movie_player,代码行数:29,代码来源:ErrorDialog.composer.cs


示例15: InitializeWidget

        private void InitializeWidget(LayoutOrientation orientation)
        {
            sceneBackgroundPanel = new Panel();
            sceneBackgroundPanel.Name = "sceneBackgroundPanel";
            PagePanel_1 = new PagePanel();
            PagePanel_1.Name = "PagePanel_1";

            // sceneBackgroundPanel
            sceneBackgroundPanel.BackgroundColor = new UIColor(0f / 255f, 0f / 255f, 0f / 255f, 255f / 255f);

            // PagePanel_1
            PagePanel_1.AddPage(new InstructionsPanel());
            PagePanel_1.AddPage(new Instructions2());
            PagePanel_1.AddPage(new Insructions3());
            PagePanel_1.AddPage(new Instructions4());
            PagePanel_1.AddPage(new instruction5Panel());
            PagePanel_1.AddPage(new Instructions6Panel());
            PagePanel_1.AddPage(new Instructions8Panel());
            PagePanel_1.AddPage(new Instructions7Panel());

            // InstructionsScene
            this.RootWidget.AddChildLast(sceneBackgroundPanel);
            this.RootWidget.AddChildLast(PagePanel_1);

            SetWidgetLayout(orientation);

            UpdateLanguage();
        }
开发者ID:phoenixperry,项目名称:crystallography,代码行数:28,代码来源:InstructionsScene.composer.cs


示例16: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
            case LayoutOrientation.Vertical:
                this.SetSize(544, 860);
                this.Anchors = Anchors.None;

                ScrollPanel_Text.SetPosition(150, 106);
                ScrollPanel_Text.SetSize(100, 50);
                ScrollPanel_Text.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                ScrollPanel_Text.Visible = true;

                break;

            default:
                this.SetSize(860, 544);
                this.Anchors = Anchors.None;

                ScrollPanel_Text.SetPosition(0, 0);
                ScrollPanel_Text.SetSize(860, 544);
                ScrollPanel_Text.Anchors = Anchors.Top | Anchors.Bottom | Anchors.Left | Anchors.Right;
                ScrollPanel_Text.Visible = true;

                break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:elliottsb,项目名称:psvreader,代码行数:28,代码来源:ReadScollPanel.composer.cs


示例17: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
            case LayoutOrientation.Vertical:
                this.SetPosition(0, 0);
                this.SetSize(480, 854);
                this.Anchors = Anchors.None;

                Label_1.SetPosition(145, 61);
                Label_1.SetSize(214, 36);
                Label_1.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                Label_1.Visible = true;

                Slider_BulletInterval.SetPosition(397, 166);
                Slider_BulletInterval.SetSize(362, 58);
                Slider_BulletInterval.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                Slider_BulletInterval.Visible = true;

                Label_2.SetPosition(27, 175);
                Label_2.SetSize(214, 36);
                Label_2.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                Label_2.Visible = true;

                Button_OK.SetPosition(319, 365);
                Button_OK.SetSize(214, 56);
                Button_OK.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                Button_OK.Visible = true;

                break;

            default:
                this.SetPosition(0, 0);
                this.SetSize(854, 480);
                this.Anchors = Anchors.None;

                Label_1.SetPosition(304, 35);
                Label_1.SetSize(245, 70);
                Label_1.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Right | Anchors.Width;
                Label_1.Visible = true;

                Slider_BulletInterval.SetPosition(340, 146);
                Slider_BulletInterval.SetSize(362, 58);
                Slider_BulletInterval.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                Slider_BulletInterval.Visible = true;

                Label_2.SetPosition(75, 157);
                Label_2.SetSize(229, 36);
                Label_2.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                Label_2.Visible = true;

                Button_OK.SetPosition(320, 319);
                Button_OK.SetSize(214, 56);
                Button_OK.Anchors = Anchors.Top | Anchors.Height | Anchors.Left | Anchors.Width;
                Button_OK.Visible = true;

                break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:tomocha,项目名称:vitaShootingGUD,代码行数:60,代码来源:UIOptionDialog.composer.cs


示例18: InitializeWidget

        private void InitializeWidget(LayoutOrientation orientation)
        {
            ImageBox_1 = new ImageBox();
            ImageBox_1.Name = "ImageBox_1";
            Button_1 = new Button();
            Button_1.Name = "Button_1";

            // ImageBox_1
            ImageBox_1.Image = new ImageAsset("/Application/assets/stageClear.png");
            ImageBox_1.ImageScaleType = ImageScaleType.Center;

            // Button_1
            Button_1.TextColor = new UIColor(255f / 255f, 255f / 255f, 255f / 255f, 255f / 255f);
            Button_1.TextFont = new UIFont(FontAlias.System, 25, FontStyle.Regular);
            Button_1.Alpha = 1;
            Button_1.Style = ButtonStyle.Custom;
            Button_1.CustomImage = new CustomButtonImageSettings(){
                BackgroundNormalImage = null,
                BackgroundPressedImage = null,
            };

            // GameOverScene
            this.RootWidget.AddChildLast(ImageBox_1);
            this.RootWidget.AddChildLast(Button_1);

            this.Transition = new CrossFadeTransition();

            SetWidgetLayout(orientation);

            UpdateLanguage();
        }
开发者ID:noradium,项目名称:Black-Rins-ambition,代码行数:31,代码来源:SceneStageClear.composer.cs


示例19: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
                case LayoutOrientation.Vertical:
                    this.SetSize(544, 960);
                    this.Anchors = Anchors.None;

                    BusyIndicator_1.SetPosition(893, 496);
                    BusyIndicator_1.SetSize(48, 48);
                    BusyIndicator_1.Anchors = Anchors.Height | Anchors.Width;
                    BusyIndicator_1.Visible = true;

                    break;

                default:
                    this.SetSize(960, 544);
                    this.Anchors = Anchors.None;

                    BusyIndicator_1.SetPosition(912, 496);
                    BusyIndicator_1.SetSize(48, 48);
                    BusyIndicator_1.Anchors = Anchors.Height | Anchors.Width;
                    BusyIndicator_1.Visible = true;

                    break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:phoenixperry,项目名称:crystallography,代码行数:28,代码来源:LoadingPanel.composer.cs


示例20: SetWidgetLayout

        public void SetWidgetLayout(LayoutOrientation orientation)
        {
            switch (orientation)
            {
                case LayoutOrientation.Vertical:
                    this.SetSize(425, 924);
                    this.Anchors = Anchors.None;

                    ImageBox_1.SetPosition(320, 75);
                    ImageBox_1.SetSize(200, 200);
                    ImageBox_1.Anchors = Anchors.None;
                    ImageBox_1.Visible = true;

                    break;

                default:
                    this.SetSize(924, 511);
                    this.Anchors = Anchors.None;

                    ImageBox_1.SetPosition(0, 74);
                    ImageBox_1.SetSize(921, 362);
                    ImageBox_1.Anchors = Anchors.None;
                    ImageBox_1.Visible = true;

                    break;
            }
            _currentLayoutOrientation = orientation;
        }
开发者ID:phoenixperry,项目名称:crystallography,代码行数:28,代码来源:InstructionsPanel.composer.cs



注:本文中的LayoutOrientation类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# LayoutWrapper类代码示例发布时间:2022-05-24
下一篇:
C# LayoutMode类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap