forked from migueldeicaza/MonoTouch.Dialog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
101 lines (63 loc) · 3.68 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
2010-10-10 thaoula <[email protected]>
* Changed the DVC constructors so that they save the passed in UITableViewStyle. Previously, the style passed to the constructor was passed along to the based
UITableViewController and not saved. Since the UITableView was actually created in the loadView function and the Style field was not updated you always got a Grouped UITableView which is cool until you want a plain one.
* Add the following properties / methods to Element.
- CssClass: This property is used to specify the name of a Style sheet class you wish to use to style an element.
- InheritStyle: This property is a flag that allows elements to block Style inheritance.
- InheritedStyle: This property returns an ElementStyle object with the styles inherited all the way up the Element tree.
- ElementStyle: This property return the ElementStyle from the stylesheet.
- ApplyStyle: This method should be called in GetCell to apply any inherited styles.
- Add ApplyStyle to all GetCell functions.
* Created the ElementStyle class that represents a style.
* Create the StyleSheet class as a container for all the styles. The Default property returns a static instance that be be used throughout the application.
If the style concept is accepted then many of the style related derivatives of several elements could be marked as Depricated.
2010-10-08 thaoula <[email protected]>
* Add a Tag field to element to allow users to tag an object to any element.
2010-06-15 Redth <[email protected]>
* MonoTouch.Dialog/ActivityElement.cs : Made activity indicator
centered
* MonoTouch.Dialog/Controls.cs : HeaderView Pull to Refresh
Cosmetic changes Makes the Background extend in Landscape
Alignment for Landscape, and Flexible Margins to look better in
Landscape
* MonoTouch.Dialog/DialogViewController.cs : Added ReloadData()
call on DidRotate override so cells get sized
* MonoTouch.Dialog/Elements.cs : Added Accessory property to
ImageStringElement Commented out unnecessary Console output Made
EntryAlignment in Element public instead of internal Switched from
Deprecated NSIndexPath Creation to the current way
* MonoTouch.Dialog/MonoTouch.Dialog.csproj : Includes
OwnerDrawnElement.cs in project file
* MonoTouch.Dialog/OwnerDrawnElement.cs : Added new element
* README.markdown : Added documentation for OwnerDrawnElement
* Sample/DemoOwnerDrawnElement.cs : Added demo for
OwnerDrawnElement
* Sample/Main.cs : Added code to load OwnerDrawnElement demo
* Sample/Sample.csproj : Includes DemoOwnDrawnElement.cs in
project file
2010-02-19 Miguel de Icaza <[email protected]>
* MonoTouch.Dialog/Elements.cs: Add LINQ friendly overload (Add
with IEnumerable).
* MonoTouch.Dialog/Reflect.cs: Fix a bug in that the enums were
not being auto-capitalized.
2010-02-16 Miguel de Icaza <[email protected]>
* DialogViewController.cs: Add support for updating the Root node
after it was created.
Add support to change the rendering mode for the table (Group vs
Plain).
* Element.cs: Support Clear() on Sections and Root, and make
Disposable Dispose the children.
Updates sample.
2010-01-19 Miguel de Icaza <[email protected]>
* Elements.cs: Add support for Date, Time and Date+Time elements
to the API.
* Main.cs: Use our own dialogs as a menu selector.
* Reflect.cs: Add support for rendering enumerations as radios.
* Reflect.cs: Add Reflecting API.
2010-01-18 Miguel de Icaza <[email protected]>
* Elements.cs: Add IDisposable pattern to release resources on
demand.
* StringElement.cs: New element that can show text plus its value;
RadioElement now derives from this.
* EntryElement.cs: New element that allows for entering text.
Expanded the sample.