コード例 #1
0
ファイル: MainPage.xaml.cs プロジェクト: yilmazeroglu/samples
        private void AddLogEntry(string message)
        {
            LogEntryItem logEntryItem = new LogEntryItem(message);

            LogEntryItemCollection.Insert(0, logEntryItem);
        }
コード例 #2
0
 private void AddLogEntry(string message)
 {
     LogEntryItem logEntryItem = new LogEntryItem(message);
     LogEntryItemCollection.Insert(0, logEntryItem);
 }