Hi Andreas,
Because some reason we hadn’t put a sample in wiki shows how to use the WMS server. But you can use that like this:
WmtsLayer wmtsLayer = new WmtsLayer(new Collection { new Uri(“your link”) });
wmtsLayer.Parameters.Add(“LAYER”, “your layer”);
wmtsLayer.Parameters.Add(“STYLE”, “default”);
wmtsLayer.Parameters.Add(“FORMAT”, “image/png”);
var overlay = new LayerOverlay();
overlay.Layers.Add(wmtsLayer);
wpfMap1.Overlays.Add(overlay);
Which parameter need be added is decided by the WMS server you want to connectted, you can get the parameters from the capability, or you can use the event wmtsLayer.SendingWebRequest to double check whether the request url for tile is works for your WMS server.
Regards,
Don