BiliRanking.FormQuickCopy.buttonCopy_Click C# (CSharp) Method

buttonCopy_Click() private method

private buttonCopy_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void buttonCopy_Click(object sender, EventArgs e)
        {
            string copytext = DoReplace(comboBox1.Text, binfos[(int)reverseUpDownFpaiming.Value - 1]);
            Clipboard.SetText(copytext);
        }