Click here to Skip to main content
15,891,607 members
Home / Discussions / C#
   

C#

 
AnswerRe: Simple Animation... Pin
Ennis Ray Lynch, Jr.14-Sep-10 7:07
Ennis Ray Lynch, Jr.14-Sep-10 7:07 
AnswerRe: Simple Animation... Pin
Luc Pattyn14-Sep-10 7:08
sitebuilderLuc Pattyn14-Sep-10 7:08 
GeneralRe: Simple Animation... Pin
stephen.darling14-Sep-10 9:50
stephen.darling14-Sep-10 9:50 
GeneralRe: Simple Animation... Pin
Luc Pattyn14-Sep-10 9:53
sitebuilderLuc Pattyn14-Sep-10 9:53 
QuestionStatic method and thread safe question Pin
Yanshof14-Sep-10 6:17
Yanshof14-Sep-10 6:17 
AnswerRe: Static method and thread safe question Pin
Luc Pattyn14-Sep-10 6:20
sitebuilderLuc Pattyn14-Sep-10 6:20 
AnswerRe: Static method and thread safe question Pin
Ennis Ray Lynch, Jr.14-Sep-10 7:01
Ennis Ray Lynch, Jr.14-Sep-10 7:01 
Questionusercontrol Pin
utunity14-Sep-10 5:01
utunity14-Sep-10 5:01 
Hi there.

I have made a user control which does something with a selected listbox.
The user selects a listbox to handle from the properties menu of the usercontrol

[IMG]http://img690.imageshack.us/img690/6100/listbox.jpg[/IMG]

I used this code to get the listbox at the property window.
<pre>
private ListBox box;
public ListBox _ListBox
{
get
{
return box;
}
set
{
box = value;
}
}
</pre>

well.. the problem is that the user can change the selected listbox's (from property menu) properties, which i realy don't like.. so how can i in any ways avoid that? (Remove the properties or disable the "+")

Thank you Smile | :)
AnswerRe: usercontrol Pin
Luc Pattyn14-Sep-10 5:45
sitebuilderLuc Pattyn14-Sep-10 5:45 
GeneralRe: usercontrol Pin
Henry Minute14-Sep-10 5:46
Henry Minute14-Sep-10 5:46 
AnswerRe: usercontrol Pin
Henry Minute14-Sep-10 5:45
Henry Minute14-Sep-10 5:45 
GeneralRe: usercontrol Pin
utunity14-Sep-10 6:02
utunity14-Sep-10 6:02 
GeneralRe: usercontrol Pin
Henry Minute14-Sep-10 6:14
Henry Minute14-Sep-10 6:14 
GeneralRe: usercontrol Pin
Luc Pattyn14-Sep-10 6:18
sitebuilderLuc Pattyn14-Sep-10 6:18 
GeneralRe: usercontrol Pin
utunity14-Sep-10 6:36
utunity14-Sep-10 6:36 
GeneralRe: usercontrol Pin
Luc Pattyn14-Sep-10 6:57
sitebuilderLuc Pattyn14-Sep-10 6:57 
GeneralRe: usercontrol Pin
utunity14-Sep-10 7:10
utunity14-Sep-10 7:10 
GeneralRe: usercontrol Pin
Luc Pattyn14-Sep-10 7:39
sitebuilderLuc Pattyn14-Sep-10 7:39 
GeneralRe: usercontrol Pin
utunity14-Sep-10 7:50
utunity14-Sep-10 7:50 
GeneralRe: usercontrol Pin
Henry Minute14-Sep-10 6:59
Henry Minute14-Sep-10 6:59 
GeneralRe: usercontrol Pin
Luc Pattyn14-Sep-10 6:17
sitebuilderLuc Pattyn14-Sep-10 6:17 
GeneralRe: usercontrol Pin
utunity14-Sep-10 10:50
utunity14-Sep-10 10:50 
QuestionCreating an ActiveX Control Pin
NarVish14-Sep-10 0:55
NarVish14-Sep-10 0:55 
AnswerRe: Creating an ActiveX Control Pin
Dave Kreskowiak14-Sep-10 4:02
mveDave Kreskowiak14-Sep-10 4:02 
GeneralRe: Creating an ActiveX Control Pin
NarVish14-Sep-10 18:47
NarVish14-Sep-10 18:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.