Hello!
I have download the NetAdvantage for Web Client 2009 Vol. 1 - Silverlight Only and installed it.
Then I`ve bind some data to the xamWebGrid, but over this grid was shown watermark "trial version".
This is my first day of Silverlight controls usage for the test. How to solve this problem?
We cant buy this Components library until test it for our needs.
Thank you.
All source-code in the attach.
cs-file
namespace SApplication{ public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); } private void Button_Click(object sender, RoutedEventArgs e) { List<Users> u = new List<Users>(); for (int i = 0; i <40; i++) { u.Add(new Users() { ID = i, Name = "Name " + i, addr = new Address() { ID = i, Addr = "addr " + i }, phone = new Phone() { ID = i, PhoneNumber = "phone " + i } }); } this.ZSheet.ItemsSource = u; } } public class Users { public int ID; public string Name; public Address addr; public Phone phone; } public class Address { public int ID; public string Addr; } public class Phone { public int ID; public string PhoneNumber; }}
There is no way to remove the watermark, but it sounds to me like the grid is not getting bound correctly. If data is available it should be visible even with the watermark.
Can you post some source code and I can help you figure out why the grid is not displaying any data.
Devin
Hello, Devin!
I`ve see nothing behind this watermark. And I can`t shure, that xamWebGrid working properly. How I can buy something if I not shure?
How to hide this watermark for trial period?
The trial version of our Silverlight controls include this watermark, but the control themselves are fully functional. If you purchase a licensed version the watermark is removed.