Tagged Questions
The browsable tag has no wiki summary.
4
votes
3answers
130 views
Making the Visual Studio designer ignore a public property
I have a UserControl with a public property using the following attributes:
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
I have tried deleting the ...
2
votes
2answers
460 views
Conditional “Browsable” Attribute
Is there a way to make a "Browsable" attribute conditional, so the property that applies it will sometimes appear in the properties page and sometimes not?
thanks :)
2
votes
2answers
372 views
WPF toolkit DataGrid show fields even with browsable attribute set to false
Hi have an observable collection that I bind to a DataGrid using the itemsource property of the DataGrid.
All the properties of the class inside the collection are displayed properly in the DataGrid. ...
1
vote
0answers
83 views
Android custom scheme not working on some devices
I have made custom scheme for my app by adding this to my activity in the android manifest:
<activity android:name=".TabHostActivity"
android:label="@string/app_name"
...
1
vote
3answers
1k views
.NET Property Grid - setting Browsable (bool) using App.config
I would like to be able to set the visibility of a property on my property grid using App.config. I have tried :
...
1
vote
2answers
3k views
C# Dynamic Attribute Arguments
Is there a way to do the following? I see that the Attribute Arguments must be a constant expression, so how would I work around this? If I dont want to load some properties into a datagridview using ...
0
votes
2answers
142 views
Protocol not supported android
Im getting this error when trying to get links to launch my activity from the browser
08-24 16:38:13.877: ERROR/Tab(358): onReceivedError -10 wizi://logout The protocol is not supported.
...
0
votes
1answer
229 views
Android browsable intent fails on gmail links, but works with default mail client
I have set up intent filters to handle certain email links with my app. This works well in Android's basic mail program. I click the link, I am prompted whether to open it using the browser or my app, ...
0
votes
1answer
226 views
How do I create browsable intent in the android manifest?
I have an Android app that should open links sent via email. I only want to open links to a certain website, though. I know that opening youTube links provides the user with a dialog asking whether to ...
0
votes
2answers
370 views
Android BROWSABLE intent API level
Are there different steps to register an Android Activity as a BROWSABLE intent on Android 2.3 (API level 10) and earlier versions?
I've set up an Activity with an intent filter that uses a custom ...
0
votes
0answers
57 views
Handling BROWSABLE Intent from Authenticated sites
I'm handling browser clicks for some types of file. Everything works as expected, only one thing fails. I can not download the content from the link from authenticated sites. They all reject me to ...