Skip to content

Instantly share code, notes, and snippets.

@yavor87
yavor87 / MainPage.xaml
Created February 8, 2019 10:53
GridView FullText search from outside TextBox
<TextBox TextChanged="TextBox_TextChanged" />
<telerik:RadGridView x:Name="grid" CanUserSearch="False" />
public class Startup {
private string clientCertPath;
}
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<DataAccess.ClientDatabaseContext>(options =>
options.UseNpgsql(this.connectionString, opt => {
opt.RemoteCertificateValidationCallback(RemoteCertificateValidation);
opt.UseAdminDatabase("defaultdb");
using System;
using System.IO;
using System.Reactive.Subjects;
using System.Threading.Tasks;
using Android.App;
using Android.Content;
using Native = Android.App.DownloadManager;
namespace Shiny.Net.Http