Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
240
Get template from Cell
posted

Hi everyone

I am using XamGrid. I define a TemplateColumnLayout:

<ig:TemplateColumnLayout Key="someKey">
     <ig:TemplateColumnLayout.Template>
          <DataTemplate>
              <TextBox x:Name="someName"></TextBox>
          </DataTemplate>
      </ig:TemplateColumnLayout.Template>
</ig:TemplateColumnLayout>

Do I able having a row get this textbox? I would like to handle RowExpansionChanged event and continue working witn this text box.

Also i would like to do this for TemplateColumn too :)

Thanks.