Click here to Skip to main content
15,907,497 members
Home / Discussions / C#
   

C#

 
GeneralRe: Change the color of the mouse cursor (cross cursor) Pin
Wolfgang Kurz23-Mar-12 23:08
professionalWolfgang Kurz23-Mar-12 23:08 
QuestionDirectoryInfo throwing ArgumentException Pin
MichCl23-Mar-12 4:53
MichCl23-Mar-12 4:53 
AnswerRe: DirectoryInfo throwing ArgumentException Pin
Wes Aday23-Mar-12 5:00
professionalWes Aday23-Mar-12 5:00 
GeneralRe: DirectoryInfo throwing ArgumentException Pin
MichCl23-Mar-12 5:25
MichCl23-Mar-12 5:25 
GeneralRe: DirectoryInfo throwing ArgumentException Pin
Wes Aday23-Mar-12 5:44
professionalWes Aday23-Mar-12 5:44 
GeneralRe: DirectoryInfo throwing ArgumentException Pin
MichCl23-Mar-12 7:46
MichCl23-Mar-12 7:46 
AnswerRe: DirectoryInfo throwing ArgumentException Pin
fjdiewornncalwe23-Mar-12 7:09
professionalfjdiewornncalwe23-Mar-12 7:09 
GeneralRe: DirectoryInfo throwing ArgumentException Pin
MichCl23-Mar-12 8:24
MichCl23-Mar-12 8:24 
GeneralRe: DirectoryInfo throwing ArgumentException Pin
fjdiewornncalwe23-Mar-12 9:12
professionalfjdiewornncalwe23-Mar-12 9:12 
AnswerRe: DirectoryInfo throwing ArgumentException Pin
Alan N23-Mar-12 7:32
Alan N23-Mar-12 7:32 
GeneralRe: DirectoryInfo throwing ArgumentException Pin
MichCl23-Mar-12 7:47
MichCl23-Mar-12 7:47 
GeneralRe: DirectoryInfo throwing ArgumentException Pin
Alan N23-Mar-12 7:55
Alan N23-Mar-12 7:55 
QuestionHow to get number of hits occurred for a particular keyword from Gnews,facebook and twitter.. Pin
ajaysinghrathore00723-Mar-12 4:03
ajaysinghrathore00723-Mar-12 4:03 
AnswerRe: How to get number of hits occurred for a particular keyword from Gnews,facebook and twitter.. Pin
Eddy Vluggen23-Mar-12 6:29
professionalEddy Vluggen23-Mar-12 6:29 
Questionfor get the tool bar Pin
cool_kp22-Mar-12 22:11
cool_kp22-Mar-12 22:11 
AnswerRe: for get the tool bar Pin
Pete O'Hanlon22-Mar-12 23:34
mvePete O'Hanlon22-Mar-12 23:34 
GeneralRe: for get the tool bar Pin
cool_kp23-Mar-12 6:05
cool_kp23-Mar-12 6:05 
AnswerRe: for get the tool bar Pin
Vipin_Arora23-Mar-12 0:54
Vipin_Arora23-Mar-12 0:54 
GeneralRe: for get the tool bar Pin
cool_kp23-Mar-12 6:12
cool_kp23-Mar-12 6:12 
AnswerRe: for get the tool bar Pin
ProEnggSoft23-Mar-12 2:06
ProEnggSoft23-Mar-12 2:06 
GeneralRe: for get the tool bar Pin
Vipin_Arora23-Mar-12 2:18
Vipin_Arora23-Mar-12 2:18 
GeneralRe: for get the tool bar Pin
ProEnggSoft24-Mar-12 0:00
ProEnggSoft24-Mar-12 0:00 
GeneralRe: for get the tool bar Pin
cool_kp23-Mar-12 6:10
cool_kp23-Mar-12 6:10 
QuestionAdding multiple controls to a ListBox without using WPF Pin
Sutton Mehaffey22-Mar-12 19:54
Sutton Mehaffey22-Mar-12 19:54 
I'm trying to create a ListBox on the fly without using any XAML code. I got it working - almost. What I have is an array of TextBoxes of 'Zone Descriptions'. I can put those into the ListBox as ListBoxItems, and it works great - no problem.
 
I want to add at the front of the TextBox a TextBlock or header that says 'Zone 1' or whatever the zone is along with the TextBox, which is user changeable. I have an array of TextBlocks (I probably could have had strings just as well). But, I can't (or don't know how to) adjust the ListBoxItem.Content to hold both the TextBlock and TextBox combo. LBI[i].Content = TBlkZoneDesc[i] + TBxZoneDesc[i] is what I want to do, but that syntax is not allowed. Doing either one separately works fine, but not both.
 
Do anyone have a suggestion on how to do that?
 

            ListBox LBZoneDesc = new ListBox();
            LBZoneDesc.Width = 300;
            LBZoneDesc.Height = 240;
            Grid.SetColumn(LBZoneDesc,0);
            Grid.SetRow(LBZoneDesc,2);
 
            ListBoxItem[] LBI = new ListBoxItem[64];
            for (byte i = 0; i < 5; i++)
            {
                LBI[i] = new ListBoxItem();
                LBI[i].Padding = new Thickness(2);
                // LBI[i].Content = TBlkZoneDesc[i];
                LBI[i].Content = TBxZoneDesc[i];
                LBZoneDesc.Items.Add(LBI[i]);               
            }
            C0Grid.Children.Add(LBZoneDesc);

QuestionIssue with regular expression Pin
Sebastian T Xavier22-Mar-12 18:36
Sebastian T Xavier22-Mar-12 18:36 

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.