Vinoth Rajendran, C# Corner

Vinoth Rajendran

C# Corner

Contact Vinoth

Discover and connect with journalists and influencers around the world, save time on email research, monitor the news, and more.

Start free trial

Recent:
  • Unknown
Past:
  • C# Corner

Past articles by Vinoth:

Learn Universal Windows Programming Via Modern C++ (ProgressRing)

This article explains how to implement the Progress Ring Control. → Read More

Learn Universal Windows Programming Via Modern C++ (DispatcherTimer)

DispatcherTimer is a timer control, that is integrated into the Dispatcher queue, Timer event is called in a specific timer interval, the main advantage DispatcherTimer, it can run the code on the same UI thread. → Read More

Learn Universal Windows Programming Via Modern C++ (ProgressBar)

ProgressBar indicates that some operation is going on in the background. → Read More

SystemDataPaths In UWP (Windows 10 Fall Creators Update Features)

This article explains about how to get system , app , user based path information. This SystemDataPaths, UserDataPaths, AppDataPaths class will be supported on Windows 10 Fall creators updated version build or greater and Windows 10 SDK 16999. → Read More

Learn Universal Windows Programming Via Modern C++ (Grid Control)

This article explains about Grid control in Modern C++/WinRT. Grid control is used to arrange the controls in multirow and multicolumn layouts (stackpanel is use arrange controls in horizontal or vertical). → Read More

Learn Universal Windows Programming Via Modern C++ (ContentDialog)

This article explains about Content dialog in C++/WinRT. It forces the user to get the input (whether success or failure) until the user cannot interact with Parent windows. → Read More

Learn Universal Windows Programming Via Modern C++ (AutoSuggestBox Control)

In this article we'll learn how to implement AutoSuggestBox and some of the important events and properties. → Read More

Learn Universal Windows Programming Via Modern C++ (SplitView Control)

In this article, we are going to learn about Splitview control in Modern C++. → Read More

ColorPicker Control In UWP (Windows 10 Fall Creators Update Features)

This article explains how to implement ColorPicker control in UWP application. A ColorPicker control is a new control in UWP programming → Read More

Learn Universal Windows Programming Via Modern C++ (Check Box)

In the button control, we are using the IInspectable to set the content of the text. How do we get the value from the IInspectable interface ? By IPropertyValue; using the “as” operator, we can convert from IInspectable to IPropertyValue. → Read More

Learn Universal Windows Programming Via Modern C++ (Combo box)

Combobox control is contains the collection of the items. It represents Drop-down list of the items. The user can select the items from the list, when the combobox is open its display all the items, once item has been selected dropdown list will close automatically. → Read More

Start The App In Windows Startup In UWP (Windows 10 Fall Creators Update Features)

A long-awaited feature (other features are LaunchApp, Restart App) has come to Universal Windows Programming i.e. we can run our application on Windows startup (User log in to the system), Previously we had done some workaround to run the app in windows startup, now it's time to say good bye to the workaround. → Read More

Learn Universal Windows Programming Via Modern C++ (RadioButton)

RadioButton is used to allow to the user select single items, whereas checkbox allows users to multiselect. → Read More

Launch UWP App Via CommandLine ( Windows 10 Fall Creators Update Features )

We can launch Win32 application via command line arguments. Let's see how to implement this feature into our UWP application. → Read More

Learn Universal Windows Programming Via Modern C++ (Button Control)

Button control allows the user to click to perform actions, there are mainly two properties, content and click event. Content properties are used to the set the caption of the Button and click event is used to trigger the event. → Read More

Learn Universal Windows Programming Via Modern C++

Universal Windows programs have developed based on the Windows Runtime (WinRT) technology, Windows Runtime (hereafter called WinRT) and runs based on the COM API, but is not designed to be directly used, instead using a “language projections” concept → Read More

Action Center Notifications In Universal Windows Programs: Part 1

The above complete area is called ToastNotificationManager & each items in this list is called ToastNofitifcation. Steps to add the ToastNotificationManager. Each item in this NotificationManager XML content only, * Request to the Notification Manager, to get the template content, Different Template Type is available. * GetTemplateContent return the XML document store into temp variable & update… → Read More

Adaptive Code And Custom Title Bar (Mobile) in Universal Windows Programs

Generally, Title Bar is not available in a Mobile application, this article explains about, how to add the custom Title Bar in Mobile & Desktop application. Custom TitleBar Steps * Create the XAML template. TextBlock: Add the TitleBar of the Text. Button: Close button, placed to right side of the application. * Button event handler call Application and exit to close the application, * Set the… → Read More

ContentDialog Via XAML In Universal Windows Program: Part 2

Before reading this article, I highly recommend reading the following article: Why ContentDialog in XAML When user want to create custom based modal dialog, compare to code behind page (part1), XAML is best and fastest way to create custom based ContentDialog. Let us see how to create below custom dialog in XAML page. Steps: * Firstly, declare the ContentDialog class & name of content control… → Read More

ContentDialog Universal Windows Program: Part 1

ContentDialog is used to create a user-defined Modal Dialog, Modal dialog: It force the user to get the input (whether is success or failure) until user cannot interact with Parent windows, Modal dialog is called child dialog. Example: VS - Account Settings, then Enter the product key dialog (Modal Dialog), without close this dialog, user cannot interact with the parent dialogue, In Universal… → Read More