Category Archives: WPF

PHPHOST BLOG

Web Hosting Related Articles You May Need

WPF 4 DataGrid: Delete Multiple Rows

This article has been guest blogged by Mahesh Sabnis.

The WPF DataGrid has really got me interested to develop line-of-Business application, and I continue using it in different implementations. Read more at WPF: Two way TextBox Binding and WPF 4: U… Continue reading

Posted in Syndicated, WPF | Comments Off on WPF 4 DataGrid: Delete Multiple Rows

WPF 4 DataGrid: Delete Multiple Rows

This article has been guest blogged by Mahesh Sabnis.

The WPF DataGrid has really got me interested to develop line-of-Business application, and I continue using it in different implementations. Read more at WPF: Two way TextBox Binding and WPF 4: U… Continue reading

Posted in Syndicated, WPF | Comments Off on WPF 4 DataGrid: Delete Multiple Rows

WPF 4: Using ObjectDataProvider for DataBinding

Windows Presentation Foundation (WPF) has provided many features for developing Data Driven applications. Using the DataBinding feature of WPF, effective data representation can easily be achieved. WPF allows developers to define an instance of the Dat… Continue reading

Posted in Syndicated, WPF | Comments Off on WPF 4: Using ObjectDataProvider for DataBinding

WPF 4: Using ObjectDataProvider for DataBinding

Windows Presentation Foundation (WPF) has provided many features for developing Data Driven applications. Using the DataBinding feature of WPF, effective data representation can easily be achieved. WPF allows developers to define an instance of the Dat… Continue reading

Posted in Syndicated, WPF | Comments Off on WPF 4: Using ObjectDataProvider for DataBinding

WPF: Two way TextBox Binding

In WPF, one of the important features provided is to bind one XAML element to another element, without using any code. This reduces code-behind requirements for the XAML file. In the code segment below, I have explained Two-Way binding between Textboxe… Continue reading

Posted in Syndicated, WPF | Comments Off on WPF: Two way TextBox Binding

WPF: Two way TextBox Binding

In WPF, one of the important features provided is to bind one XAML element to another element, without using any code. This reduces code-behind requirements for the XAML file. In the code segment below, I have explained Two-Way binding between Textboxe… Continue reading

Posted in Syndicated, WPF | Comments Off on WPF: Two way TextBox Binding

Display Parent Child collection in WPF DataGrid using Combobox

The DataBinding feature in WPF is excellent, especially in DataGrid scenarios where we receive a parent-child collection from a DAL or an external service and need to display this data in a control like the DataGrid. A common implementation of this sce… Continue reading

Posted in Syndicated, WPF | Comments Off on Display Parent Child collection in WPF DataGrid using Combobox

Change WPF DataGrid Row Color on Mouse Over

In this short code snippet, I will explain how to change the look of the WPF DataGrid row display on a Mouse action (in this example, on MouseOver). In WPF using Style, the display and the behavior of any element can be changed by defining user input a… Continue reading

Posted in Syndicated, WPF | Comments Off on Change WPF DataGrid Row Color on Mouse Over

Using GridSplitter in Windows Presentation Foundation (WPF)

WPF provides various control for enhancing User experience (UX). One of the very useful category of controls is Panel controls viz Grid, WrapPanel, DockPanel, StackPanel etc. All these controls are used for effective layout. Along with these controls, … Continue reading

Posted in Syndicated, WPF | Comments Off on Using GridSplitter in Windows Presentation Foundation (WPF)

Creating and Loading XAML dynamically in WPF

In this post, we will see how to create a XAML file from the WPF element object and how to load this XAML file dynamically to generate UI. In WPF we have been provided with following classes:XamlWriter – used to serialize the WPF UI Element objects in … Continue reading

Posted in Syndicated, WPF | Comments Off on Creating and Loading XAML dynamically in WPF