Resources No resource found - Combining Angular 5 CLI Project And ASP.NET Core ProjectApr 02, 2018. Angular 5 is catching the attention of all the developers. And Dot Net Core from Microsoft is already popular. So what happens if you create an Angular project in the command line, and then you want to integrate it with Asp.Net core framework?
- WPF - REST Web API ConsumptionMar 29, 2018. This article is about REST Web API Consumption in WPF client-side software/application.
- Bind Combobox With Enum Using ObjectDataProvider WPF MVVMMar 24, 2018. In this article, you will learn to bind combo box with enum directly using ObjectDataProvider in WPF MVVM.
- Use Of CallerMemberName With INotifyPropertyChanged Interface In WPF MVVMMar 22, 2018. In this article, you will learn about the use of CallerMemberName With INotifyPropertyChanged Interface in WPF MVVM.
- Use INotifyPropertyChanged Interface In WPF MVVMMar 20, 2018. INotifyPropertyChanged is an interface member in System.ComponentModel Namespace. This interface is used to notify the Control that property value has changed.
- WPF - Data Storage Using SQL ServerMar 15, 2018. For any development domain, be it mobile or web or desktop or service-based, data storage is an essential component whether it is done on the server side or the client side. WPF application is a client-side application and it also supports many data storage resources which depend on the business requirement or business choice.
- Building A Data Driven App Using WPF XamDataGridMar 15, 2018. A typical rich data-driven Windows client app includes a backend database and a front-end client UI. The app connects to a database, reads the database, displays records in data controls, and implements CRUD operations. The app may also include some advanced UI operations such as sorting, searching, filtering, multiple views, and data export.
- Mapping Similar Objects In ASP.NET Core 2.0Mar 13, 2018. This article is about mapping similar objects of two different classes with reduced lines of code using ASP.NET Core Automapper.
- WPF - Dropdown Menu/Combobox Menu Data Binding Using Text FileFeb 16, 2018. This article is about WPF dropdown menu/combobox menu data binding using text file
- WPF - File Menu User ControlFeb 08, 2018. This article is about the development of WPF File Menu User control.
- Expression Bodied Members In C#Jan 18, 2018. What is Expression Bodied Members?1) Expression Bodied member is introduced in C#6.0 and enhanced in C#7.0.
2) Expression Bodied is a new technique or implementation to make code concise and readable.
3) Expression Bodied makes the type member(Constructor, Destructor, Methods, Property, Indexer) defined in a single expression.
4) Expression Bodied members can only be applied to the below list of type members:
Constructor introduced in C#7.0
Destructor introduced in C#7.0
Property get accessor introduced in C#6.0
Property set accessor introduced in C#7.0
Methods introduced in C#6.0
Indexer introduced in C#7.0
The Syntax of expression body definition is:member => expression;
where expression should be a valid expression and member can be any from above list of type members.Suppose we have a method or constructor that contain a single expression or line of code. Then In spite of using the traditional way to write code inside a method or constructor code block, we can write them as a single syntax. Those members who can follow this approach is known as Expression Bodied Members.
- Using XAML Progress Bar In WPFJan 12, 2018. Long running tasks in any application make the application or software nonresponsive. So to keep the user updated about the running task and also keep the application responsive during long running tasks we can use different kinds of loading bar options like.
- Send Email With Attachment In Office 365 (SharePoint Online)Jan 07, 2018. Recently, I came up with a requirement to send an email with attachment in Office 365 (SharePoint Online). This needs to be a custom functionality wherein for each line item in a jQuery Data table (as shown in below image), user needs to send an email with an attachment to specific email address.
- Creating A C# Console App From My iPhoneJan 02, 2018. Hyper IDE [link to https://github.com/polterguy/hyper-ide] is an Open Source web-based Integrated Development Environment. It supports 100+ progamming languages out of the box, and can be integrated with any type of command line tools, such as Git, compilers, etc. This leads to some interesting traits, such as the ability to actually create for instance C# console apps, from the browser on your phone. For the record, writing code on a phone, is not easy, and not something I encourage people to do in general. However, the border line use cases have interest.
- Routed Events, WPF Tree Structures, Event Sequence for BeginnersDec 30, 2017. Hello WPF aspirants, I take this opportunity to present to you a simple example of WPF Routed Events and supporting theory on Routed Events, Event sequences, what happens when a button is clicked, etc. These, I believe, will guide the beginners into the lovely land of WPF.
- How To Create Own NPM Package And Publish ItDec 29, 2017. NPM (Node Package Manager) is a package manager for JAVASCRIPT (Node.js) , use of npm is to use already developed javascript module in your application. It contains command line client that interacts with remote registry where the actual package resides
- Xamarin.Forms - Microcharts AppDec 11, 2017. In this article, we are going to learn how to display micro-charts in single line code for Xamarin.Forms.
- Knowing When To Reflect With Caller Info AttributesDec 10, 2017. If you've been around C# long enough, you've probably had a need at one time or another to figure out some information about code that's being executed. It might be a method name, the file being executed, or even more specific details like the line number.
- Picasso Library Visual Flair Using Android ApplicationDec 02, 2017. Images add much-needed context and visual flair to an Android application. Picasso allows hassle-free image loading in your application - often in one line of code!.
- How To Track Facebook Wall Messages In An Excel Table Using Microsoft FlowNov 22, 2017. Microsoft Flow is a cloud-based service. It allows us to react to an event in one and do something with the data from that event into another service. It makes it practical and simple for line-of-business. The users can build workflows that automatically do some business tasks and processes across applications and services.
- Simplest WPF Dependency Property For Beginners On Background ColorNov 19, 2017. Dependency property is not wrapped over any private members unlike CLR properties, and it is also stored in Key-Value pairs inside the DependencyObject host instance. You must use Dependency properties if you need to create and apply properties on custom usercontrols, or change properties based on external inputs like Theme, Style, animation etc, or while applying data binding or set with a resource (static/dynamic) .
- How To Save Office 365 Email Attachment To OneDrive With Microsoft FlowNov 16, 2017. Microsoft Flow is a cloud-based service. It allows us to react to an event in one and do something with the data from that event into another one Service. It makes it practical and simple for line-of-business. The users build workflows that automatically do some business tasks and processes across applications and services.
- Develop, Test And Deploy The Angular Project In IIS Using Angular CLI And Visual Studio Code In Few MinutesNov 10, 2017. The Angular CLI is a command line interface tool that can be used to create our angular project very easily and it is also used to perform a variety of ongoing development tasks such as testing, bundling, and deployment in our same project.
- Find The Installed SharePoint 2016 Edition Via C#Nov 06, 2017. Have you ever tried to detect the SharePoint Edition via C#? Regardless of the answer, detecting the SharePoint Edition via C# is not just a line of code as Build Number, to detect the SharePoint 2016 Edition, it will need to know the corresponding SKU.
- Applying Dependency Injection In DevExpress MVVM WPF Application IntroductionOct 31, 2017. In this post, I’ll give a tutorial on how to apply dependency injection in DevExpress WPF application. This post assumes you already know about dependency injection, WPF application, and also MVVM. DevExpress MVVM is one of freely available MVVM frameworks we can use to develop desktop application using WPF.
- Add Class Library In ASP.NET Core Using .NET Core Command-Line Interface (CLI)Oct 29, 2017. This article explains how to add Class Library in ASP.NET Core using .NET Core Command-Line Interface (CLI) with a simple way. Before reading this article, read the previous parts of this article using below article link.
- Working With ASP.NET Core From Command LineOct 26, 2017. In this article, let's see how to work with ASP.NET Core from Command Line.
- Highcharts With Angular Custom Directive And Web APIOct 25, 2017. We already know that DotNet Highcharts library is a client side library for charting and we can create very clean and flexible charts with minimum configuration. Using Highcharts, we can probably create all types of charts which we use in daily life, it could be a line chart, it could be a bar chart or column chart etc.
- .NET Highcharts With ASP.NET MVCOct 22, 2017. This article will demonstrate how to implement DotNet Highcharts with Asp.Net MVC application. Highcharts is a JavaScript library to implement charting functionality like line chart, bar chart, column chart etc. We can create different types of charts using highcharts. Today with this article, I will try to show you how to create Highcharts in Asp.Net MVC from server side.
- Deploying A Virtual Machine Using Azure PowerShellOct 11, 2017. Azure PowerShell provides a set of cmdlets that use the Azure Resource Manager model for managing your Azure resources. You can use it in your browser with Azure Cloud Shell, or you can install it on your local machine and use it in any PowerShell session. It is optimized for managing and administering Azure resources from the command line, and for building automation scripts that work against the Azure Resource Manager.
- Beginners Guide For Angular ModuleSep 28, 2017. For better understanding, before directly jump into the angular module, let me provide few lines about what is an angular and angular application in simple words.
- Selection Manager For WPF/MVVMSep 17, 2017. This article presents the idea and implementation of a class to manage the selection of only one element in different linear and hierarchical structures.
- ASP.NET MVC CRUD Operation Using Entity Framework Without Writing Single CodeSep 11, 2017. Here, you will learn to do CRUD (Create,Read,Update and Delete) operations in MVC using Entity Framework without writing a single line of code.
- Launch UWP App Via CommandLine ( Windows 10 Fall Creators Update Features )Sep 07, 2017. We can launch Win32 application via command line arguments. Let's see how to implement this feature into our UWP application.
- Getting Started With Bing Speech API In WPF ApplicationsSep 06, 2017. Cognitive services are a set of APIs that are designed to democratize artificial intelligence by enabling systems to see, hear, speak, understand and interpret our needs using natural methods of communication.
- Learn About Azure Cognitive ServicesSep 01, 2017. Microsoft Cognitive Services (earlier known as Project Oxford) provides us the ability to build intelligent applications, just by writing a few lines of code. These applications or services are deployed on major platforms like Windows, iOS, and Android. All the APIs are based on machine learning APIs and enable developers to easily add intelligent features – such as emotion and video detection; facial, speech and vision recognition; and speech and language understanding – into their applications.
- Async Validation In WPFAug 31, 2017. Quite often validation requires web requests, database calls or some other kind of actions which require significant amount of time. In this case, UI should be responsible during the validation, but saving/submitting data should be disabled until validations completion.
- An Overview Of WPF ArchitectureAug 17, 2017. In continuation of my previous article “ABCs of WPF”, I am going to discuss the architecture of WPF.
- How To Create Angular App Using Angular CLIAug 14, 2017. Before 1 year, I planned to create simple angular app but at that time i don't have idea about angular cli so i had configure lot of things and faced more issue.I spend 2-3 days to configure angular app and finally done. In this article we will learn how to create Angular app using angular CLI.Angular CLI is just a command line interface help us to create angular app very eaisly within 2 minute.
- Connecting SharePoint Online Using PowerShellAug 08, 2017. PowerShell is a powerful Command Line Shell Script mainly used by the administrators, and manages anything in Microsoft products.
- Pre/Post Build Events Command Line In Visual StudioAug 02, 2017. Pre/Post build events are useful when we wish to perform some operation before/after a project is built. These operations are nothing but the Shell commands being used from the command line. A build event can be formed using a single, multiple, or conditional commands.
- ABC Of WPFJul 15, 2017. Basically I am working on .Net/Sql. For the project requirements I went through the WPF. I visited so many online tutorials and videos to get the knowledge. In this article I am going to share my understanding with you.
- Building Web Apps With ASP.NET Core And DotVVMJun 29, 2017. There is one category of web applications where the MVVM pattern can be especially useful: line of business applications. Yes, these crazy large web sites with hundreds of grids, large and complicated forms with hundreds of fields, tabs, wizards and modal dialogs.
- MVVM In WPFJun 29, 2017. MVVM is an architecture pattern which facilitates separation of projects into three logical layers with their own responsibilities. It facilitates modern techniques such as Separation of Concern, Unit testing and TDD. It is set of guidelines, that, when used, makes it easier to develop applications.
- WPF Notifications For All (SignalR)Jun 26, 2017. In the current times, all operating systems and browsers have a notification engine. This is a very practical characteristic and that enables us to have apps 100% connected and 100% live. With notifications, we can have information about: our other apps, our environments, our users, our fails, etc., when they occur.
- Populating Hierarchical Data In TreeView In WPF Using MVVMJun 20, 2017. TreeView Hierarchical Data Binding In WPF MVVM.
- Learn WPF Using Google Place APIJun 05, 2017. Learn WPF Using Google Place API.
- Auto ViewModelLocator In MVVM PatternMay 25, 2017. Auto ViewModelLocator in MVVM pattern.
- Command-Line Disk Formatting In Windows Server 2016May 17, 2017. Command-line disk formatting in Windows Server 2016.
- Learn WPF CRUD Operations Using VB.NETMay 09, 2017. In this article, you will learn WPF CRUD Operations using VB.NET.
- Dialogs In WPF (MVVM) - Part ThreeMay 07, 2017. In this article, you will learn about dialogs in WPF (MVVM).
- Learn Web API Using WPF, WebForms And XamarinMay 06, 2017. In this article, you will be acquainted with learning Web API , using WPF, WebForms and Xamarin.
- MongoDB CRUD Operation In WPF C# With GridViewMay 01, 2017. This article acquaints you with MongoDB CRUD operation In WPF C# with GridView.
- WPF - Data BindingApr 22, 2017. This article presents information about Data binding, which is a mechanism in WPF Applications, which provides a simple and easy way for Windows Runtime apps to display and interact with the data.
- WPF - Command LineApr 14, 2017. Command line argument is a mechanism, where a user can pass a set of parameters or the values to a WPF Application when it is executed.
- WPF - Routed EventsApr 04, 2017. WPF - Routed Events.
- Mandatory Field Validation In WPF Using MVVMApr 02, 2017. Mandatory Field Validation In WPF Using MVVM.
- Get Started MVVM Light With WPF (Separation Of ViewModel) - Part TwoMar 17, 2017. This article familiarizes you with MVVM Light with WPF (Separation of ViewModel).
- Getting Started With MVVM Light With WPFMar 09, 2017. In this demonstration, we will see how to set up MVVM light and how it works in WPF applications
- How To Customize Static And Dynamic Column Chart In WPF With MVVM Pattern Using Prism LibraryMar 01, 2017. In this article, I will demonstrate how you can customize a Column chart like changing foreground color, background color, and label transformation of either static or dynamic WPF with MVVM pattern, using Prism library.
- Create Line Charts From SharePoint List View Using Client Side Rendering And ChartJSFeb 28, 2017. In this article, you will learn to create Line charts from SharePoint List View, using client side rendering and ChartJS.
- Static And Dynamic Pie Chart In WPF With MVVM Pattern Using Prism LibraryFeb 26, 2017. In this article, I will demonstrate how you can create either a static or dynamic Pie chart in WPF with MVVM pattern, using Prism library.
- An Easy Way To Transfer Data Between WPF Applications And ExcelFeb 23, 2017. In this article, you will learn about an easy way to transfer the data between WPF Applications and Excel.
- Static And Dynamic Area Chart In WPF With MVVM Pattern Using Prism LibraryFeb 21, 2017. In this article, I will demonstrate how you can create either static or dynamic area chart in WPF with MVVM pattern using Prism Library.
- Code First Migration - ASP.NET Core MVC 6 With EntityFrameWork CoreFeb 21, 2017. In this article, we are going to explain Code First Migration in ASP.NET Core MVC 6 With Entity Framework Core , using Command Line Interface ( CLI ).
- Overview Of WPF FeaturesFeb 20, 2017. In this article, you will learn about WPF features.
- How To Hide The Legend In Static And Dynamic Column Chart In WPF With MVVM Pattern Using Prism LibraryFeb 18, 2017. In this article, I will demonstrate how you can hide the legend in a column chart, which is either a static or dynamic WPF with MVVM pattern, using Prism library.
- Static And Dynamic Line Chart In WPF With MVVM Pattern Using Prism LibraryFeb 15, 2017. In this article, I will demonstrate how you can create either a static or dynamic line chart in WPF with MVVM pattern, using Prism Library.
- Introduction To SearchAll Control In WPFFeb 15, 2017. In this article, you will learn about SearchAll Control in WPF.
- Dynamic Localization In WPFJan 26, 2017. In this article, you will learn about Dynamic Localization in WPF.
- DataBinding Expressions In WPFJan 20, 2017. In this article, you will learn about Data Binding Expression in WPF.
- MVVM Architecture When Using Web Services For Database Interaction - Part TwoJan 17, 2017. In this article, you will learn about MVVM Architecture when using Web Services for database interaction.
- SharePoint 2016- "Set-ContentDatabase" Not Working Using Pipe LineJan 16, 2017. In this article, you will learn what to do when "set- ContentDatabase" command stops working when using Pipe Line.
- Getting Started With MVVM In WPFJan 11, 2017. In this article, you will learn about MVVM in WPF.
- Creating FTP File Downloader Application With Background WorkerJan 10, 2017. In this article, you will learn about FTP File Downloader with downloading progress, using background worker.
- Implementing Cache Provider In One Line Of CodeJan 05, 2017. In this article, I will share my own Cache Provider implementation to use everywhere when calling in one line of code
- Static And Dynamic Column Chart In WPF With MVVM Pattern Using Prism LibraryJan 04, 2017. In this article, I will demonstrate how you can create either a static or dynamic column chart in WPF with MVVM pattern, using Prism Library.
- Sharepoint Columns ExploredJan 02, 2017. In this article, you will learn everything about SharePoint columns. I am going to talk about the single line of text column type.
- How To Implement Inline Edit, Clone, And Update in SharePoint List Items Using AngularJSDec 22, 2016. Here, you will learn how to implement Inline Edit, Clone, and Update in SharePoint list items, using AngularJS.
- Different Types Of Templates In WPFDec 21, 2016. In this article, you will learn about templates in WPF. I will explain the importance and types of the templates in detail.
- Record Table Changes Notification From SQL Server To WPF ClientDec 13, 2016. This article shows how to push record table changes to WPF clients using WCF Call Back Service.
- Creating A New .NET Core Web Application With Command Line Interface (CLI)Nov 29, 2016. In this article, we are going to learn how to create .NET Core web application without using Visual Studio IDE in step by step way.
- Launch Edge From Command Line With a URLNov 25, 2016. Launch Edge From Command Line With a URL
- Node.JS - Web Server - Day EightNov 16, 2016. Web Server is an application software, which is used to handle the request generated by client, using HTTP protocol. In Node.js HTTP Server, there is a zero configuration Command Line HTTP Server. In this article, we learn how to configure a Node.js HTTP Server.
- Creating Carousel Using SharePoint Out-Of-The-Box WebPartOct 31, 2016. In this article, you will learn how to create a carousel without a single line of code.
- Working With DataGrid Selected Item In WPF With MVVM Pattern Using Blend For Visual Studio And MahApps Metro UI FrameWorkOct 18, 2016. In this article, you will learn how to get the selected DataGrid item with MVVM pattern and how to customize the DataGrid visual appearance, using Blend for Visual Studio.
- Creating Metro Style Circle Button Using Mahapps Metro UI FrameworkOct 15, 2016. In this article, you will learn how to create Metro style Circle Button in WPF application, using Mahapps Metro UI framework and Microsoft Visual Studio.
- CheckBox Binding In MVVM - WPFOct 15, 2016. In this article, you will learn about CheckBox binding in MVVM WPF.
- Overview Of Multi Binding In MVVM - WPFOct 14, 2016. In this article, you will learn about multi binding in MVVM - WPF.
- Explain Radio Button Binding In MVVM - WPFOct 11, 2016. In this article, you will learn how to explain radio button binding in MVVM - WPF.
- Command Line Interface (CLI) Tools In .NET CoreOct 10, 2016. In this article, you will learn about Command Line Interface (CLI) Tools in .NET Core.
- Explain Combo Box Binding In MVVM - WPFOct 07, 2016. In this article, you will learn how to explain combo box binding in MVVM - WPF.
- ICommand Interface In MVVM - WPFOct 05, 2016. In this article, you will learn about ICommand in WPF - MVVM.
- Get Image Attributes using Cognitive Services face API in WPFOct 04, 2016. In this article you will learn how to get the image attributes like Age, Gender using Cognitive Services face API in WPF.
- How To Play MPEG-DASH Videos In Windows 10 UWP AppOct 04, 2016. In this article, we are going to see how to play MPEG-DASH Videos in Windows Universal app, using WebView Control.
- Explain INotifyPropertyChanged In WPF - MVVMOct 04, 2016. In this article, you will learn how to explain INotifyPropertyChanged in WPF.
- Explain Binding Mode In WPFOct 02, 2016. In this article, you will learn about binding mode in WPF.
- Cognitive Services face API in WPFSep 29, 2016. In this article, I will explain how to use Cognitive Services face API in WPF.
- ContextMenu In WPFSep 23, 2016. In this article, you will learn about ContextMenu in WPF.
- What Is The Future Of XAMLSep 17, 2016. Are you a Windows developer and wonder what the future of XAML looks like? XAML is used to build user interfaces of WPF and UWP applications.