1 write to _controlStyle
System.Web.Mobile (1)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlStyleClass.cs (1)
35_controlStyle = (Style) source.Clone();
20 references to _controlStyle
System.Web.Mobile (20)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlStyleClass.cs (20)
77return _controlStyle; 99Wrapping styleWrapping = (Wrapping) _controlStyle [Style.WrappingKey, true /* inherit */]; 110Alignment styleAlignment = (Alignment) _controlStyle [Style.AlignmentKey, true /* inherit */]; 120Color styleColor = (Color) _controlStyle [Style.BackColorKey, true /* inherit */]; 130Color styleColor = (Color) _controlStyle [Style.ForeColorKey, true /* inherit */]; 140if ((BooleanOption) _controlStyle [Style.ItalicKey, true /* inherit */] == BooleanOption.True) { 143else if ((BooleanOption) _controlStyle [Style.ItalicKey, true /* inherit */] == BooleanOption.False) { 152if ((BooleanOption) _controlStyle[Style.BoldKey, true /* inherit */] == BooleanOption.True) { 155else if ((BooleanOption) _controlStyle[Style.BoldKey, true /* inherit */] == BooleanOption.False) { 164if ((String) _controlStyle[Style.FontNameKey, true /* inherit */] != (String) XhtmlConstants.DefaultStyle [Style.FontNameKey, false /* do not inherit */]) { 165classBuilder.Append ("font-family: " + _controlStyle[Style.FontNameKey, true /* inherit */].ToString () + ";\r\n"); 174switch ((FontSize)_controlStyle[Style.FontSizeKey, true /* inherit */]) { 208if ((BooleanOption)_controlStyle [Style.BoldKey, true] != (BooleanOption)style [Style.BoldKey, true]) { 211if ((BooleanOption)_controlStyle [Style.ItalicKey, true] != (BooleanOption)style [Style.ItalicKey, true]) { 214if ((String)_controlStyle [Style.FontNameKey, true] != (String)style [Style.FontNameKey, true]) { 217if ((FontSize)_controlStyle [Style.FontSizeKey, true] != (FontSize)style [Style.FontSizeKey, true]) { 220if ((Color)_controlStyle [Style.BackColorKey, true] != (Color)style [Style.BackColorKey, true]) {// value comparison 223if ((Color)_controlStyle [Style.ForeColorKey, true] != (Color)style [Style.ForeColorKey, true]) {// value comparison 227if ((Alignment)_controlStyle [Style.AlignmentKey, true] != (Alignment)style [Style.AlignmentKey, true]) { 230if ((Wrapping)_controlStyle [Style.WrappingKey, true] != (Wrapping)style [Style.WrappingKey, true]) {