C# Класс ExamplesLibrary.GridViewVM

This view model demonstrates how to leverage the two-way data binding on both the server-side view model and the code-behind on the browser to build rich web applications with less efforts and less code complexity.
Наследование: BaseVM
Показать файл Открыть проект

Открытые методы

Метод Описание
Employees_get ( string iKey ) : EmployeeInfo

By convention, when VMController receives a list item from the client, it will look for the function that starts with the list property name and ends with "_get" to access the list item for the purpose of updating its value.

GridViewVM ( ) : System

Constructor.

Приватные методы

Метод Описание
Employee_PropertyChanged ( object sender, PropertyChangedEventArgs e ) : void

If employee info changed and is currently selected, make sure the displayed name and phone are updated too.

Описание методов

Employees_get() публичный Метод

By convention, when VMController receives a list item from the client, it will look for the function that starts with the list property name and ends with "_get" to access the list item for the purpose of updating its value.
public Employees_get ( string iKey ) : EmployeeInfo
iKey string List item key.
Результат EmployeeInfo

GridViewVM() публичный Метод

Constructor.
public GridViewVM ( ) : System
Результат System