Top "Visibility" questions

Visibility is an attribute of an object.

WPF Tooltip Visibility

How can I ensure that a button's Tooltip is only visible when the button is disabled? What can I bind …

wpf binding tooltip visibility
android View with View.GONE still receives onTouch and onClick

This is confusing me: As far as I have read, a view with setVisibility(View.GONE); should not receive any …

android view onclick visibility
Disable or grey out a node in the TreeNode Editor

How do I disable a specific node so the user can not select it. Hiding it for the user is …

c# visual-studio treeview visibility
How can I check that an element is visible with Puppeteer and pure JavaScript?

I wish to check that a DOM element is visible with Puppeteer and pure JavaScript (not jQuery), how can I …

javascript css node.js puppeteer visibility
What's the best way to check if the view is visible on the window?

What's the best way to check if the view is visible on the window? I have a CustomView which is …

android view visibility
How to implement a click event for a stackpanel

I checked the stackpanel class here http://msdn.microsoft.com/en-us/library/system.windows.controls.stackpanel.aspx and it has …

c# windows-phone-8 visibility stackpanel
WPF: Binding Visibility by string contents

Ok, so here is my XAML: <TextBlock Text="{Binding Path=InstanceName}"></TextBlock> If InstanceName is null …

wpf binding visibility textblock
Accessing a Private Constructor from Outside the Class in C#

If I define a class with a private default constructor and a public constructor that has parameters, how can I …

c# constructor visibility default-constructor
setvisibility(view.visible) not working after setvisibility(view.gone)

I saw some post about this and I understood the problem. But how can go around it? I have ListView …

android listview view visibility onitemclicklistener
public methods in package-private classes

Does it make a difference to mark methods as public in package-private classes? class SomePackagePrivateClass { void foo(); // package private method …

java methods package visibility public-method