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.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With