// Deep Earth is a community project available under the Microsoft Public License (Ms-PL)
// Code is provided as is and with no warrenty Use at your own risk
// View the project and the latest code at http://DeepEarth.codeplex.com/
namespace ExampleControlBing.ControlDemos{
public partial class GeometryStylePickerExample
{
public GeometryStylePickerExample()
{
InitializeComponent();
Loaded += GeometryStylePickerExample_Loaded;
}
void GeometryStylePickerExample_Loaded(object sender, System.Windows.RoutedEventArgs e)
{
// TODO: add a sample geometry to the map and bind style to stylepicker
}
}
}
|