문제

I have a silverlight gird. One of the columns I use AutoCompleteBox as cell edit template. I declare it as follows

<c1:Column.CellEditingTemplate>
    <DataTemplate>
      <sdk:AutoCompleteBox x:Name="TestField" Text="{Binding ReferencePath,Mode=TwoWay}"                                       Populating="tester_Populating" MinimumPrefixLength="0" IsDropDownOpen="True" LostFocus="tester_LostFocus"/>
                    </DataTemplate>
                </c1:Column.CellEditingTemplate>

When I tried to access TestField in the code behind, it is not available. Why is this variable not accessible in the code behind?

도움이 되었습니까?

해결책

Found the answer in the following link,

http://forums.silverlight.net/forums/p/200237/467179.aspx

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top