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)
77
return
_controlStyle
;
99
Wrapping styleWrapping = (Wrapping)
_controlStyle
[Style.WrappingKey, true /* inherit */];
110
Alignment styleAlignment = (Alignment)
_controlStyle
[Style.AlignmentKey, true /* inherit */];
120
Color styleColor = (Color)
_controlStyle
[Style.BackColorKey, true /* inherit */];
130
Color styleColor = (Color)
_controlStyle
[Style.ForeColorKey, true /* inherit */];
140
if ((BooleanOption)
_controlStyle
[Style.ItalicKey, true /* inherit */] == BooleanOption.True) {
143
else if ((BooleanOption)
_controlStyle
[Style.ItalicKey, true /* inherit */] == BooleanOption.False) {
152
if ((BooleanOption)
_controlStyle
[Style.BoldKey, true /* inherit */] == BooleanOption.True) {
155
else if ((BooleanOption)
_controlStyle
[Style.BoldKey, true /* inherit */] == BooleanOption.False) {
164
if ((String)
_controlStyle
[Style.FontNameKey, true /* inherit */] != (String) XhtmlConstants.DefaultStyle [Style.FontNameKey, false /* do not inherit */]) {
165
classBuilder.Append ("font-family: " +
_controlStyle
[Style.FontNameKey, true /* inherit */].ToString () + ";\r\n");
174
switch ((FontSize)
_controlStyle
[Style.FontSizeKey, true /* inherit */]) {
208
if ((BooleanOption)
_controlStyle
[Style.BoldKey, true] != (BooleanOption)style [Style.BoldKey, true]) {
211
if ((BooleanOption)
_controlStyle
[Style.ItalicKey, true] != (BooleanOption)style [Style.ItalicKey, true]) {
214
if ((String)
_controlStyle
[Style.FontNameKey, true] != (String)style [Style.FontNameKey, true]) {
217
if ((FontSize)
_controlStyle
[Style.FontSizeKey, true] != (FontSize)style [Style.FontSizeKey, true]) {
220
if ((Color)
_controlStyle
[Style.BackColorKey, true] != (Color)style [Style.BackColorKey, true]) {// value comparison
223
if ((Color)
_controlStyle
[Style.ForeColorKey, true] != (Color)style [Style.ForeColorKey, true]) {// value comparison
227
if ((Alignment)
_controlStyle
[Style.AlignmentKey, true] != (Alignment)style [Style.AlignmentKey, true]) {
230
if ((Wrapping)
_controlStyle
[Style.WrappingKey, true] != (Wrapping)style [Style.WrappingKey, true]) {