Denis Bittencourt Muniz Postado Outubro 11, 2005 Denunciar Share Postado Outubro 11, 2005 Fala galera!Alguém ai pode analisar meu código e falar aonde estou errando?:<% @ Page Language = "C#" %> <script runat="server"> void Imprimir(Object Sender, EventArgs e){ Rotulo.ForeColor = CorFonte.SelectedItem.Text; //Deu erro! Rotulo.Text = Texto.Text; } </script> <html> <head> <title>Repetição</title> </head> <body> <form runat="server" > <asp:Label runat="server" id="Rotulo"><b>Seja bem-vindo!!</b></asp:Label><p> <b>Texto:</b> <asp:TextBox runat="server" id="Texto" />   <b>Cor da fonte:</b> <asp:DropDownList runat="server" id="CorFonte"> <asp:ListItem Value="Black">Preto</asp:ListItem> <asp:ListItem Value="White">Branco</asp:ListItem> <asp:ListItem Value="Red">Vermelho</asp:ListItem> <asp:ListItem Value="Blue">Azul</asp:ListItem> <asp:ListItem Value="Yellow">Amarelo</asp:ListItem> <asp:ListItem Value="Green">Verde</asp:ListItem> <asp:ListItem Value="Orange">Laranja</asp:ListItem> <asp:ListItem Value="Purple">Roxo</asp:ListItem> <asp:ListItem Value="Cyan">Ciano</asp:ListItem> <asp:ListItem Value="Brown">Marrom</asp:ListItem> </asp:DropDownList>   <b>Cor do fundo:</b> <asp:DropDownList runat="server" id="CorFundo"> <asp:ListItem Value="Black">Preto</asp:ListItem> <asp:ListItem Value="White">Branco</asp:ListItem> <asp:ListItem Value="Red">Vermelho</asp:ListItem> <asp:ListItem Value="Blue">Azul</asp:ListItem> <asp:ListItem Value="Yellow">Amarelo</asp:ListItem> <asp:ListItem Value="Green">Verde</asp:ListItem> <asp:ListItem Value="Orange">Laranja</asp:ListItem> <asp:ListItem Value="Purple">Roxo</asp:ListItem> <asp:ListItem Value="Cyan">Ciano</asp:ListItem> <asp:ListItem Value="Brown">Marrom</asp:ListItem> </asp:DropDownList>   <asp:CheckBox runat="server" id="Negrito" Text="<b>Negrito</b>" /> <asp:CheckBox runat="server" id="Italico" Text="<i>Itálico</i>" /> <asp:CheckBox runat="server" id="Sublinhado" Text="<u>Sublinhado</u>" /> <asp:CheckBox runat="server" id="tachado" Text="<s>Tachado</s>" /> <asp:LinkButton runat="server" id="Enviar" Text="Enviar" OnClick="Imprimir" /> </form> </body> </html> Como trabalhar com cores?falows! Link para o comentário Compartilhar em outros sites More sharing options...
0 Graymalkin Postado Outubro 11, 2005 Denunciar Share Postado Outubro 11, 2005 A mensagem de erro é:Cannot implicitly convert type 'string' to 'System.Drawing.Color'Ou seja:Não se pode converter implicitamente o tipo "string" para "System.Drawing.Color"Então, você tem que fazer isso (naquela linha):Rotulo.ForeColor = System.Drawing.Color.FromName(CorFonte.SelectedItem.Text);Certo? Graymalkin Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Denis Bittencourt Muniz
Fala galera!
Alguém ai pode analisar meu código e falar aonde estou errando?:
Como trabalhar com cores?
falows!
Link para o comentário
Compartilhar em outros sites
1 resposta a esta questão
Posts Recomendados