icsharpcode / WpfDesigner

The WPF Designer from SharpDevelop
MIT License
949 stars 251 forks source link

WPF Designer ToDo's #18

Closed jogibear9988 closed 4 weeks ago

jogibear9988 commented 8 years ago
javidang commented 8 years ago

Hi. Adding binding support (setting binding from property grid) is viable ? I tried to add in xaml something like "ItemSource={Binding List}" , but form disappears when i switch to design mode.

jogibear9988 commented 8 years ago

Please create a new Issue if you have a Bug! This is only a List of Todo's for myself!

Don't know what you mean what does not work! If I have XAML like this

 <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Width="640"
    Height="480">
   <Canvas>
     <ListBox Width="120"
         Height="100"
         ItemsSource="{Binding List}"
         Canvas.Left="179"
         Canvas.Top="153" />
  </Canvas>
 </Window>

I can switch to Design View