Beispiel #1
0
        private void btnAttach_Click(object sender, EventArgs e)
        {
            this.Attachments.Clear();

            var foundAttachments = StringExt.GetAttachmentsFromString(this.txtVideo.Text);

            this.Attachments.AddRange(foundAttachments);

            this.btnAttach.Text = $"Вложения: {this.Attachments.Count}";
        }