«code-behind» 태그된 질문

3
코드 숨김에서 Canvas.Left 속성을 변경 하시겠습니까?
XAML에 사각형이 있고 Canvas.Left코드 뒤에서 해당 속성 을 변경하고 싶습니다 . <UserControl x:Class="Second90.Page" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="400" Height="300" KeyDown="txt_KeyDown"> <Canvas> <Rectangle Name="theObject" Canvas.Top="20" Canvas.Left="20" Width="10" Height="10" Fill="Gray"/> </Canvas> </UserControl> 그러나 이것은 작동하지 않습니다. private void txt_KeyDown(object sender, KeyEventArgs e) { theObject.Canvas.Left = 50; } 이 작업을 수행하는 구문이 무엇인지 아는 사람이 …

18
현재 컨텍스트에 'controlname'이름이 없습니다.
작업중인 웹 응용 프로그램이 있습니다 (VS2005를 사용하는 C #의 ASP.NET2.0). 모든 것이 잘 작동하고 갑자기 오류가 발생합니다. Error 1 The name 'Label1' does not exist in the current context 페이지의 코드 비하인드에서 컨트롤을 사용할 때마다 43 개의 다른 종류가 있습니다. 이것은 한 페이지에서만 발생합니다. 코드 숨김이 컨트롤을 인식하지 못하는 것과 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.