Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2005-02-02 19:24:08 +0300
committerLluis Sanchez <lluis@novell.com>2005-02-02 19:24:08 +0300
commit300c4162b7f492dc7d841a7b685be8fda0017b00 (patch)
tree0cb454257ec6aca1f1480db4a0eb253d76456e93 /mcs/class/System.Web/System.Web.UI.WebControls/TableStyle.cs
parent67c5bf8c5ac610e6a0dc99e2d581e35e7b244a3d (diff)
2005-02-02 Lluis Sanchez Gual <lluis@novell.com>
* Button.cs, MonthChangedEventArgs.cs, FontInfo.cs, Xml.cs, Style.cs, CookieParameter.cs, HyperLinkColumn.cs, Table.cs, RegularExpressionValidator.cs, WizardNavigationEventArgs.cs, ServerValidateEventArgs.cs, Menu.cs, DataControlField.cs, DataGridPagerStyle.cs, Label.cs, CheckBox.cs, ListItem.cs, RadioButton.cs, TableStyle.cs, ListControl.cs, Image.cs, BaseCompareValidator.cs, FontUnit.cs, DataListCommandEventArgs.cs, IButtonControl.cs, BaseDataList.cs, DataList.cs, BulletedList.cs, RangeValidator.cs, DataBoundControl.cs, ControlParameter.cs, RepeaterItemEventArgs.cs, SqlDataSource.cs, BaseValidator.cs, CustomValidator.cs, MenuItem.cs, SessionParameter.cs, TextBox.cs, QueryStringParameter.cs, Content.cs, ContentPlaceHolder.cs, CheckBoxList.cs, RepeaterCommandEventArgs.cs, RadioButtonList.cs, RequiredFieldValidator.cs, AdRotator.cs, DataListItemEventArgs.cs, DataGridSortCommandEventArgs.cs, Repeater.cs, MenuItemTemplateContainer.cs, HyperLink.cs, SqlDataSourceView.cs, XmlDataSource.cs, MultiView.cs, DataGridCommandEventArgs.cs, Panel.cs, CompositeControl.cs, DataGrid.cs, ButtonColumn.cs, CompareValidator.cs, HierarchicalDataBoundControl.cs, EditCommandColumn.cs, Calendar.cs, SiteMapDataSource.cs, ListBox.cs, TableCell.cs, ObjectDataSourceSelectingEventArgs.cs, ObjectDataSourceMethodEventArgs.cs,DataGridPageChangedEventArgs.cs, WebControl.cs, BaseDataBoundControl.cs, FormParameter.cs, ValidationSummary.cs, View.cs, ImageButton.cs, TableRow.cs, LinkButton.cs, DataGridColumn.cs, Parameter.cs, TableItemStyle.cs, AdCreatedEventArgs.cs: General 2.0 API fixes: missing attributes, incorrect inheritance, missing sealed keywords, wrong signatures, etc. svn path=/trunk/mcs/; revision=39994
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI.WebControls/TableStyle.cs')
-rw-r--r--mcs/class/System.Web/System.Web.UI.WebControls/TableStyle.cs36
1 files changed, 31 insertions, 5 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/TableStyle.cs b/mcs/class/System.Web/System.Web.UI.WebControls/TableStyle.cs
index a1653a11928..de80d2561dd 100644
--- a/mcs/class/System.Web/System.Web.UI.WebControls/TableStyle.cs
+++ b/mcs/class/System.Web/System.Web.UI.WebControls/TableStyle.cs
@@ -54,7 +54,13 @@ namespace System.Web.UI.WebControls
{
}
- [DefaultValue (""), Bindable (true), WebCategory ("Appearance")]
+#if NET_2_0
+ [NotifyParentPropertyAttribute (true)]
+ [UrlPropertyAttribute]
+#else
+ [Bindable (true)]
+#endif
+ [DefaultValue (""), WebCategory ("Appearance")]
[WebSysDescription ("An Url specifying the background image for the table.")]
public virtual string BackImageUrl
{
@@ -73,7 +79,12 @@ namespace System.Web.UI.WebControls
}
}
- [DefaultValue (-1), Bindable (true), WebCategory ("Appearance")]
+#if NET_2_0
+ [NotifyParentPropertyAttribute (true)]
+#else
+ [Bindable (true)]
+#endif
+ [DefaultValue (-1), WebCategory ("Appearance")]
[WebSysDescription ("The space left around the borders within a cell.")]
public virtual int CellPadding
{
@@ -92,7 +103,12 @@ namespace System.Web.UI.WebControls
}
}
- [DefaultValue (-1), Bindable (true), WebCategory ("Appearance")]
+#if NET_2_0
+ [NotifyParentPropertyAttribute (true)]
+#else
+ [Bindable (true)]
+#endif
+ [DefaultValue (-1), WebCategory ("Appearance")]
[WebSysDescription ("The space left between cells.")]
public virtual int CellSpacing
{
@@ -111,7 +127,12 @@ namespace System.Web.UI.WebControls
}
}
- [DefaultValue (typeof (GridLines), "None"), Bindable (true), WebCategory ("Appearance")]
+#if NET_2_0
+ [NotifyParentPropertyAttribute (true)]
+#else
+ [Bindable (true)]
+#endif
+ [DefaultValue (typeof (GridLines), "None"), WebCategory ("Appearance")]
[WebSysDescription ("The type of grid that a table uses.")]
public virtual GridLines GridLines
{
@@ -130,7 +151,12 @@ namespace System.Web.UI.WebControls
}
}
- [DefaultValue (typeof (HorizontalAlign), "NotSet"), Bindable (true), WebCategory ("Layout")]
+#if NET_2_0
+ [NotifyParentPropertyAttribute (true)]
+#else
+ [Bindable (true)]
+#endif
+ [DefaultValue (typeof (HorizontalAlign), "NotSet"), WebCategory ("Layout")]
[WebSysDescription ("The horizonal alignment of the table.")]
public virtual HorizontalAlign HorizontalAlign
{