Our Insights
Innovative Ways - Satisfied Clientele
Innovative Ways - Satisfied Clientele
Kapil Panchal - February 12, 2021
The WPF tree view supports data binding, as all other WPF controls do, but, as the tree view hierarchy does, a normal DataTemplate is often not enough. Instead, we use the Hierarchical Data template, which allows us to template both tree nodes while controlling which property to use as a source for the node's child objects. The tree view tag represents the WPF TreeView control in XAML. The tree view tag represents the WPF TreeView control in XAML. A tree view...
Kapil Panchal - February 11, 2021
In this blog, we will be going to discuss hashing, encryption, and random string generation in ASP.NET Core. We will examine a number of different approaches and explain why some common techniques should be avoided in the latest applications. What is ASP.NET Core? ASP.NET Core is a free open-source platform that was developed by Microsoft along with .NET core. It is a cross-platform that supports almost every operating system like macOS, Windows, and Linux. ASP.NET Core...
Kapil Panchal - February 11, 2021
In this blog, we will introduce infinite scrolling in our Angular application. When we prepare an application, we deal with tons of files at the same time. In this situation, a question will be asked: how to display thousands of registrations on a single page? It is not a good practice to load thousands of records at once on one page, and there are many benefits to implement infinite scrolling. Increase the time on our web site so that we can have faster operations Make...
Kapil Panchal - February 11, 2021
In WPF, Fallback is one of the features of binding fallback values. When we are working with the WPF there are many cases when we get the null values or not the correct binding for handle this type of situation WPF can provide us with Fallback values and Target Null Value. Two types of Fallback values are available. TargetNullValue FallbackValue TargetNullValue is used when we want to display the alternate value when the object property is null. If the object...
Kapil Panchal - February 10, 2021
The background task is a type of task which runs in the background. For example, sometimes we run any task and it takes a long time so start a new task to work more efficiently. Let's take the example in the coding world sometimes we have to log in one page and after a fewprocesses need to send an email to the client so we can do send mail process in the background and continue the process which is unfinished in this sending mail is Background task. Why we need background Tasks? The...