New to GTK and SQS I found these things helpful:
1. Setting an the image on an Image Widget is as easy as imageWidet.File = “filename.jpg”
2. If using C# or mono, methods/delegates that will catch an event need the attribute [GLib.ConnectBefore]. E.g. =
[GLib.ConnectBefore]
protected void Decline_Comment_Pressed(object sender, EventArgs e)
{ …
3. Disbabling a button is buttonWidget.Sensitive = false; (this one seems very odd to me)
4. All certificates in mono are not trusted by default,
a quick fix is to add a class that inherits from ICertificatePolicy and always returns true
class My_Certificate : System.Net.ICertificatePolicy
{
public bool CheckValidationResult(System.Net.ServicePoint
srvPoint, System.Security.Cryptography.X509Certificates.X509Certificate
certificate, System.Net.WebRequest request, int certificateProblem)
{
return true;
}
}
Let me know if you want any sqs examples / hints.


