0
mtxtBdate.Value = dataGridView1.SelectedRows[0].Cells["Birthdate"].Value.ToString(); 

他のすべてのテキストボックスの DataGridView でこの構文を使用していますが、この DatePicker コントロール構文を適応させる方法を教えてもらえますか? データグリッドに表示されているユーザーが選択した日付を取得したいDateTimePicker

mtxtfname.text = datagridView1.SelectRows[0].Cells["fIrstname"].value.ToString();

この構文はテキスト ボックスでは機能しますが、データ ピッカーでは機能しますか?

4

1 に答える 1

0

Make use of the combination of a <asp:TextBox> and <asp:CalendarExtender> control that targets a textbox where the selected date will be added

<asp:TextBox ID="txtBirthdate" runat="server"  
            CssClass="contentfield" Height="16px" MaxLength="12" 
             width="150px" Wrap="False"></asp:TextBox>
        <asp:CalendarExtender ID="CalendarExtender1" runat="server" 
            Format="dd MMM yyyy" PopupButtonID="imgSummaryCashFlowDate" 
            TargetControlID="txtBirthdate">
        </asp:CalendarExtender>

This will work exactly the same as a normal textbox in your gridview and you will be able to pull the date from the textbox exactly the same manner as you have done orignally.

于 2012-07-16T09:35:26.690 に答える