在使用 Visual Studio 2010 构建的 C# 中,我的 WPF 应用程序存在一些问题。目前出现的错误是:
用户代码未处理 SecurityException
以下是我单击按钮时的代码,它检查文本文件的大小,如果它有音量或没有颜色,则称为“ButtonToday”的按钮的背景。
private void Button_Click(object sender, RoutedEventArgs e)
{
//Gets current date and puts it into string.
string today = DateTime.Now.ToString("yyyy.MM.dd");
string yesterday = DateTime.Now.AddDays(-1).ToString("yyyy.MM.dd");
TextBoxToday.Text = "" + today;
TextBoxYesterday.Text = "" + yesterday;
FileInfo f = new FileInfo("D:\\Client1\\2011.02.14.log");
{
if (f.Length > 0)
ButtonToday.Background = Brushes.Green;
else
ButtonToday.Background = Brushes.Red;
}
}
谢谢你的帮助。我是一个n00b。