WPF:在弹出窗口中打开日历,如DatePicker

时间:2017-03-27 15:30:33

标签: c# wpf mvvm datagrid

我有一个DataGrid,想在一个单元格中使用// Convert to Base64 function getBase64(file) { var reader = new FileReader(); reader.readAsDataURL(file); reader.onload = function () { let base64String = reader.result.split(',').pop(); console.log(base64String); return base64String; }; reader.onerror = function (error) { console.log('Error: ', error); }; } 。我知道一种让// Post a new tweet function postTweet() { var mediaid = ""; var file = document.querySelector('input[type=file]').files[0]; var img = getBase64(file); var params = { "media_data": img }; cb.__call( "media_upload", params, function (reply, rate, err) { mediaid = reply.media_id_string; console.log(reply); cb.__call( "statuses_update", { media_ids: mediaid, status: document.getElementById("tweet").value }, function (reply, rate, err) { console.log(reply); } ); } ); }; 看起来像MonthPicker的方法,这就是我选择这个类的原因。

Calender

问题是Calender未在弹出窗口中打开,而是在DataGrid单元格中打开。

datagrid

如何在DatePicker等弹出窗口中打开它?

1 个答案:

答案 0 :(得分:1)

尝试将其放在recyclerview元素中:

Popup