ToolStripDropDownButton右对齐,显示在应用程序的窗口外部

bot*_*aio 0 c# winforms

在进行我的项目期间,我遇到了一个奇怪的问题。当我在应用程序的ToolStrip中对ToolStripDropDownButton进行右对齐时,它会出现在窗口之外。甚至全屏显示在我的第二台显示器上。我以为我担心窗口是否正确对齐菜单,但似乎我错了。我使用Windows窗体。

这就是我在说的。这是一个简短的生成类似问题。

partial class Form2
{
    /// <summary>
    /// Required designer variable.
    /// </summary>
    private System.ComponentModel.IContainer components = null;

    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    protected override void Dispose(bool disposing)
    {
        if (disposing && (components != null))
        {
            components.Dispose();
        }
        base.Dispose(disposing);
    }

    #region Windows Form Designer generated code

    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
        this.toolStrip1 = new System.Windows.Forms.ToolStrip();
        this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
        this.itemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
        this.toolStrip1.SuspendLayout();
        this.SuspendLayout();
        // 
        // toolStrip1
        // 
        this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
        this.toolStripDropDownButton1});
        this.toolStrip1.Location = new System.Drawing.Point(0, 0);
        this.toolStrip1.Name = "toolStrip1";
        this.toolStrip1.Size = new System.Drawing.Size(763, 25);
        this.toolStrip1.TabIndex = 0;
        this.toolStrip1.Text = "toolStrip1";
        // 
        // toolStripDropDownButton1
        // 
        this.toolStripDropDownButton1.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
        this.toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
        this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
        this.itemToolStripMenuItem});
        this.toolStripDropDownButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton1.Image")));
        this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
        this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
        this.toolStripDropDownButton1.Size = new System.Drawing.Size(30, 22);
        this.toolStripDropDownButton1.Text = "\\/";
        // 
        // itemToolStripMenuItem
        // 
        this.itemToolStripMenuItem.Name = "itemToolStripMenuItem";
        this.itemToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
        this.itemToolStripMenuItem.Text = "Item";
        // 
        // Form2
        // 
        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.ClientSize = new System.Drawing.Size(763, 612);
        this.Controls.Add(this.toolStrip1);
        this.Name = "Form2";
        this.Text = "Form2";
        this.toolStrip1.ResumeLayout(false);
        this.toolStrip1.PerformLayout();
        this.ResumeLayout(false);
        this.PerformLayout();

    }

    #endregion

    public Form2()
    {
        InitializeComponent();
    }

    private System.Windows.Forms.ToolStrip toolStrip1;
    private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton1;
    private System.Windows.Forms.ToolStripMenuItem itemToolStripMenuItem;
}
Run Code Online (Sandbox Code Playgroud)

有没有办法强制Windows向左绘制此菜单?

在此处输入图片说明

Stu*_*use 5

只需DropDownDirection在按钮上设置即可控制下拉菜单与按钮的对齐方式。我认为,BelowLeft是您要找的那个

toolStripDropDownButton1.DropDownDirection = ToolStripDropDownDirection.BelowLeft;
Run Code Online (Sandbox Code Playgroud)