ApplicationMenu.Form1.kryptonRibbon1_AppButtonMenuOpening C# (CSharp) Method

kryptonRibbon1_AppButtonMenuOpening() private method

private kryptonRibbon1_AppButtonMenuOpening ( object sender, CancelEventArgs e ) : void
sender object
e CancelEventArgs
return void
        private void kryptonRibbon1_AppButtonMenuOpening(object sender, CancelEventArgs e)
        {
            kryptonRibbon1.RibbonAppButton.AppButtonShowRecentDocs = checkBoxShowRecentDocs.Checked;
            kryptonRibbon1.RibbonStrings.RecentDocuments = textBoxDocsTitle.Text;

            int minWidth = int.Parse(textBoxMinWidth.Text);
            int minHeight = int.Parse(textBoxMinHeight.Text);
            kryptonRibbon1.RibbonAppButton.AppButtonMinRecentSize = new Size(minWidth, minHeight);
        }