Documentation | Known issues | DK for .NET
<application xmlns="urn:schemas-microsoft-com:asm.v3"> <windowsSettings> <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware> <longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware> </windowsSettings> </application>
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12 | SecurityProtocolType.Ssl3 ;
This is a .NET Framework restriction. However, compiling an application with .NET 4.6 or newer should resolve the problem as well.
Due to security reasons, TLS lower than 1.2 should be disabled. Starting February 4th, 2020 our tile service works only on TLS 1.2 and/or newer.
#region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.GIS = new TatukGIS.NDK.WinForms.TGIS_ViewerWnd(); //### ADD THIS ### this.SuspendLayout(); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(13F, 32F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.GIS); //### ADD THIS ### this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); } #endregion private TatukGIS.NDK.WinForms.TGIS_ViewerWnd GIS; //### ADD THIS ###
Then control will be visible in a designer. Alternatively, just design a form with classic .NET WinForms and port it.
Microsoft is aware of this issue and status is 'investigating'.