Let's say I have this xaml code :
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Canvas>
<Rectangle Name="papan" Fill="Red" Height="20" Width="20" />
</Canvas>
</Window>
And I have a file named Program.fs (F# code), how can I access "papan", for example, from my code?
Thanks