My favorites | Sign in
Project Home Downloads Wiki Issues Source
Repository:
Checkout   Browse   Changes   Clones    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace SyringeControl.WinForms
{
/// <summary>
/// Implementation of <see cref="INotifyingProperty{T}"/> storing scalar values.
/// Such values can be bound to controls via simple data binding.
/// </summary>
/// <typeparam name="T">type of value stored by property.</typeparam>
public sealed class SimpleProperty<T> : PropertyBase<T>
{
/// <summary>
/// Initializes an instance of <see cref="SimpleProperty{T}"/> class.
/// </summary>
/// <param name="propName">name of property that will be passed to <see cref="INotifyingProperty{T}.Changed"/> handlers.</param>
public SimpleProperty(string propName)
: base(propName)
{ }
}
}

Change log

b4e5f52768aa by Yuri Korchyomkin <yuri.korchyomkin> on Aug 9, 2009   Diff
added to IControlView event notifying
about pressing 'Setup' button
moved some classes to separate files
Go to: 
Project members, sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 745 bytes, 18 lines
Powered by Google Project Hosting