コード例 #1
0
ファイル: PrayView.xaml.cs プロジェクト: blessnhs/blessnhs
        private void Entry_TextChanged(object sender, EventArgs e)
        {
            if (PrayEntry.Text == null || PrayEntry.Text == "")
            {
                return;
            }

            NetProcess.SendMakePray(PrayEntry.Text);

            PrayEntry.Text = "";

            NetProcess.SendPrayList();
        }