Tag: 后退button

鼠标结束时更改button的颜色

当IsMouseOver == True时,我想改变一个button的背景颜色 <Button Command="{Binding ClickRectangleColorCommand}" Background="{Binding Color ,Converter={StaticResource RGBCtoBrushColorsConverter},Mode=TwoWay}" Width="auto" Height="40"> <TextBlock Foreground="Black" Text="{Binding Color, Converter={StaticResource RGBCColorToTextConveter},Mode=TwoWay}"/> <Button.Style> <Style TargetType="Button" BasedOn="{StaticResource {x:Type Button}}"> <Style.Triggers> <Trigger Property="IsMouseOver" Value="True"> <Setter Property="Background" Value="DarkGoldenrod"/> </Trigger> </Style.Triggers> </Style> </Button.Style> </Button> 我似乎无法理解为什么这个触发器不工作。

Android:使用setOnClickListener / onClick的SWITCH语句获取多个button?

假设我在LinearLayout中有几个button,其中2个是: mycards_button = ((Button)this.findViewById(R.id.Button_MyCards)); exit_button = ((Button)this.findViewById(R.id.Button_Exit)); 我在他们两个上注册setOnClickListener() : mycards_button.setOnClickListener(this); exit_button.setOnClickListener(this); 如何使开关区分Onclick中的两个button? public void onClick(View v) { switch(?????){ case ???: /** Start a new Activity MyCards.java */ Intent intent = new Intent(this, MyCards.class); this.startActivity(intent); break; case ???: /** AlerDialog when click on Exit */ MyAlertDialog(); break; }

使用jQuery从asp:RadioButtonList读取选定的值

我有类似于下面的代码… <p><label>Do you have buffet facilities?</label> <asp:RadioButtonList ID="blnBuffetMealFacilities:chk" runat="server"> <asp:ListItem Text="Yes" Value="1"></asp:ListItem> <asp:ListItem Text="No" Value="0"></asp:ListItem> </asp:RadioButtonList></p> <div id="HasBuffet"> <p><label>What is the capacity for the buffet?</label> <asp:RadioButtonList ID="radBuffetCapacity" runat="server"> <asp:ListItem Text="Suitable for upto 30 guests" value="0 to 30"></asp:ListItem> <asp:ListItem Text="Suitable for upto 50 guests" value="30 to 50"></asp:ListItem> <asp:ListItem Text="Suitable for upto 75 guests" value="50 to 75"></asp:ListItem> […]

点击/聚焦时如何更改button的背景图像?

点击或聚焦时,我想更改button的背景图像。 这是我的代码: Button tiny = (Button)findViewById(R.id.tiny); tiny.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub Button tiny = (Button)findViewById(R.id.tiny); tiny.setBackgroundResource(R.drawable.a9p_09_11_00754); TextView txt = (TextView)findViewById(R.id.txt); txt.setText("!—- On click —-!"); } }); 这个代码是对的吗? 它是否在其事件上调用button?

为什么宽度适用于显示内联的button?

根据MDN ,一个button是一个内联元素。 但是,button元素具有默认样式和display: inline-block (请参阅此问题 ) button, textarea, input, select { display: inline-block } 到现在为止还挺好。 然而: 如果我现在设置display:inlinebuttondisplay:inline – 宽度仍然适用! DEMO button, div { width: 200px; border: 1px solid red; display: inline; } <button>button</button> <div>div</div> 现在,根据规范 : width不适用于内联元素(不被replace) 适用于:所有元素,但未被replace的行内元素,表行和行组 既然如此: 为什么宽度仍然适用于内联button元素?

改变button文字onclick

当我点击这个button时,我想要改变这个值。 HTML: <input onclick="change()" type="button" value="Open Curtain" id=myButton1"></input> 使用Javascript: function change(); { document.getElementById("myButton1").value="Close Curtain"; } 这个button现在正在显示打开的窗帘,我想让它改成closures窗帘,这是正确的吗?

Chrome在按下button时显示ajax响应

我遇到了一个问题,如果我使用jQuery的Get方法来获得一些内容,如果我点击回来,而不是实际上回到历史中的一页,而是显示由Ajax查询返回的内容。 有任何想法吗? http://www.dameallans.co.uk/preview/allanian-society/news/56/Allanian-test 在上面的页面中,如果您在更改页面后单击返回的注释列表下方使用分页,则会显示用于生成注释列表的HTML内容。 我注意到它并不总是这样做,但是如果您点击不同的页面几次,并单击后退button,它只是在窗口而不是网站显示json文本。 由于某种原因,这只会影响Chrome浏览器,因为IE和Firefox工作正常。

在WPFbutton中添加图像

我试过这个解决scheme: <Button> <StackPanel> <Image Source="Pictures/img.jpg" /> <TextBlock>Blablabla</TextBlock> </StackPanel> </Button> 但是我只能在项目窗口看到图像,当我启动程序时,它就消失了。 如果我尝试这个: Image img = new Image(); img.Source = new BitmapImage(new Uri("foo.png")); StackPanel stackPnl = new StackPanel(); stackPnl.Orientation = Orientation.Horizontal; stackPnl.Margin = new Thickness(10); stackPnl.Children.Add(img); Button btn = new Button(); btn.Content = stackPnl; 我得到了“PresentationFramework.dll”中的“System.Windows.Markup.XamlParseException”exception。 你能帮我find解决办法吗? 谢谢。

在Android中检测物理菜单键按下

我正在尝试检测Android手机上的物理菜单button何时被按下。 我虽然下面的代码将工作,但事实并非如此。 请问我哪里错了? 返回的错误是“参数onKeyDown的非法修饰符; 只有最后被允许“ public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_MENU) { // Do Stuff } else { return super.onKeyDown(keyCode, event); } }

每秒钟点击一个button

如何使用JavaScript每秒钟点击一个button?