Exemple #1
0
        private async void cbxChatProfiles_TextChanged(object sender, EventArgs e)
        {
            var chatProfile = cbxChatProfiles.Text;

            if (!string.IsNullOrWhiteSpace(chatProfile))
            {
                await DataProviders.ChangeProfile(chatProfile);
                await LoadOtherActionsData();

                ReloadTree();
                lnkProgressResultAction.Visible = false;
            }
        }