I am building a C# WPF Browser App (my C# skills are quite rusty).

I have a button that I want to have change color depending on if a text document has anything in it. IE: Color is Green if there is any text in it, or Red if it is empty.

Can someone please push me off in the right direction. Thank you.

link|improve this question

When you say a text document, do you mean one on disk? Or something they will be currently editing in a text area or something? – Josh Feb 11 '11 at 2:29
It will be a file on the HDD that stays the in the same location, but the contents will differ. – The Woo Feb 11 '11 at 2:36
@Woo, see the link in my answer below. A bit length, but should give you a lot of little nuggets to chew on during your WPF development. – Josh Feb 11 '11 at 14:10
feedback

4 Answers

up vote 6 down vote accepted

Take a look at System.IO.FileInfo

FileInfo f = new FileInfo( "<file path>" );
if( f.Length > 0 ) 
  // Color button green
else 
  // Color button red

Note that if you keep f around and plan to check it again later, you will have to call f.Refresh() to ensure it has the latest information.

link|improve this answer
Sorry to be a complete n00b, could you provide an example of this? Where to put the code in the Page1.xaml.cs? – The Woo Feb 11 '11 at 2:38
Well, do you want to do it once at startup? Then I'd put it in the window's load event. If you want to periodically check it, I would use ThreadPool.QueueUserWorkItem. – Chris Hogan Feb 11 '11 at 2:45
feedback

Clearly I am very late on this one, but my answer turned into a big blog post.

Here is a full solution using FileSystemWatcher and all the WPF bells and whistles

Hopefully you get some use out of it.

link|improve this answer
feedback

Check the bytes of the text document. If its empty, it will be 0 bytes

link|improve this answer
feedback
button.Color = (new FileInfo("foo.bar")).Length == 0 ? Color.Red : Color.Green;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.