Telerik Forums
UI for WPF Forum
1 answer
36 views

Hello,

I am working with GridViewColumnGroups in RadTreeListView. The first steps and styling worked pretty well. 

This morning, I stumbled upon an issue which I am trying to fix now - so far, without success:

I need to implement the "Thumb" and resizing for a GridViewColumnGroup by dragging it with the mouse (the same behavior as it already exists for plain columns). The reason I want to implement this is that I want to "fake" a certain behavior: There are alternating GridViewColumnGroups which each contain only one column. But the user of the application should be under the illusion that the column header cell and the column group are one cell - as if the two "melted together".

By styling the column group, I can make it look like that (I changed the background colour and set the bottom border to thickness zero - that's it). But I also need to implement the Thumb that not only the appearance but also the behavior are the same.

This leads me to the issue that a two-way binding between the column width and the column group width has to be implemented.

 

Any help here or someone with experience / a solution to this issue?

Any help is appreciated! Thanks a lot in adavance!

Alex

Stenly
Telerik team
 answered on 11 Feb 2025
2 answers
69 views

Hello,

I have to attach an xml file to a pdf document, generated by Telerik report Designer.

I have a problem at importing and exporting the generated document.

Import problems:
The MediaBox has values about 100 * 333333333, as you can see in the code, i already tried to reset its size.

Other Unknown problem:
Theres is no text displayed in the exported pdf, but the imported document has a page, and has page.Content.count=80, so there was data imported.

I already tried to remove/implement the PDFA-3b Standard for generation and exporting, but it is still the same result.
The generated document was validated and has correct PDFA-3b Standard.

I also tried to set the font to black via editor, because i thought theres maybe a font problem.

This problems only occures with invoices created by ReportDesigner.
A self created word document, exported to pdf works well.

Code for generating the document by ReportDesigner:

public void Export(object param)
{
    try
    {
        Logger.Log("Executing PrintDialogView.Export", LogLevels.Debug, null, 2);
        if (param != null)
        {
            Microsoft.Win32.SaveFileDialog dialog = new Microsoft.Win32.SaveFileDialog();
            dialog.FileName = FileName;
            dialog.Filter = String.Format("(*.{0})|*.{1}", param.ToString(), param.ToString());
            var SavePath = Repository<AppSetting>.GetSingle(Context, u => u.Key == AppSettingTypes.SavePath.ToString());
            if (SavePath != null && SavePath.Value != string.Empty)
			{
				dialog.InitialDirectory = SavePath.Value.ToString();
			}

            if (dialog.ShowDialog() == true)
            {

				// DeviceInfo für PDF/A-3 konfigurieren
				System.Collections.Hashtable deviceInfo = new System.Collections.Hashtable();
				deviceInfo["ComplianceLevel"] = "PDF/A-3B"; // PDFA-3b-Standard

				Telerik.Reporting.Processing.ReportProcessor reportProcessor = new Telerik.Reporting.Processing.ReportProcessor();
				Telerik.Reporting.Processing.RenderingResult result = reportProcessor.RenderReport("PDF", ReportSource, deviceInfo);
				//Telerik.Reporting.Processing.RenderingResult result = RenderExport(param.ToString());

				using (System.IO.FileStream fs = new System.IO.FileStream(dialog.FileName, System.IO.FileMode.Create))
                {
                    fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);
                    System.IO.FileInfo fi = new System.IO.FileInfo(dialog.FileName);
                    Logger.Log(String.Format("File saved to Directory = {0}, Filename = {1}", fi.Directory, fi.FullName), LogLevels.Debug, null, 2);
                    ReturnExport(fi.Extension, System.IO.Path.GetFileNameWithoutExtension(dialog.FileName), result.DocumentBytes);
                }
                if (SaveDocumentFile)
                {
                    DocumentNumber = GetAndSetNextDocumentNumber(SelectedDocumentLayout);
                }
            }
        }
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.ToString(), "Fehler", MessageBox.MessageBoxButtons.Okay, MessageBox.MessageBoxImages.Error);
    }
}


Code for Import/Export the generated Document

using iText.IO.Colors; using iText.Kernel.Pdf; using iText.Kernel.XMP.Options; using iText.Kernel.XMP; using iText.Pdfa; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Telerik.Windows.Documents.Fixed.FormatProviders.Pdf; using Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Export; using Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Encryption; using Telerik.Windows.Documents.Fixed.Model; using System.Diagnostics; using iText.Pdfa.Exceptions; using Telerik.Windows.Documents.Fixed.Model.Text; using System.Windows; using Telerik.Windows.Documents.Fixed.Model.Editing; using Telerik.Documents.Fixed.Model.Fonts; using Telerik.Documents.Media; using Telerik.Windows.Documents.Fixed.Model.ColorSpaces; using System.Drawing; namespaceZUGFeRD_ConsoleTest { publicclassTest { public RadFixedDocument LoadPdf(string @pdfPath) { // Read the PDF file as a byte arraybyte[] pdfBytes = System.IO.File.ReadAllBytes(@pdfPath); // Create a PdfFormatProvider instance PdfFormatProvider provider = new PdfFormatProvider(); // Import the PDF into a RadFixedDocument RadFixedDocument document = provider.Import(pdfBytes, new TimeSpan(0, 0, 60));

// RadFixedDocumentEditor editor = new RadFixedDocumentEditor(document); //RgbColor black = new RgbColor(127, 255, 255, 255);//RgbColor white = new RgbColor(0, 0 , 0, 0);

//editor.CharacterProperties.ForegroundColor = black;//editor.ParagraphProperties.BackgroundColor = white;

if (document.Pages.Count == 0) { thrownew Exception("Das geladene PDF-Dokument enthält keine Seiten."); } foreach(var page in document.Pages) { if(page.Content != null) { Console.WriteLine($"Seite mit {page.Content.Count} Objekten geladen."); foreach (var content in page.Content) { Console.WriteLine(content.ToString()); } } //page.MediaBox = new System.Windows.Rect(0, 0, 2480, 3508); //page.CropBox = page.MediaBox; } //editor.Dispose(); return document; }public void ExportDocument(RadFixedDocument document, string targetPath) { // Export to PDF including xml file PdfFormatProvider provider = new PdfFormatProvider(); PdfExportSettings settings = new PdfExportSettings(); if (provider.CanExport) { settings.ComplianceLevel = PdfComplianceLevel.PdfA3B; settings.IsEncrypted = false; settings.FontEmbeddingType = FontEmbeddingType.None; provider.ExportSettings = settings; //System.Collections.Hashtable deviceInfo = new System.Collections.Hashtable();//deviceInfo["ComplianceLevel"] = "PDF/A-3B"; // PDF/A-3-Standardbyte[] exportBytes = provider.Export(document, new TimeSpan(0, 0, 60)); using (FileStream fs = new FileStream(targetPath, FileMode.Create)) { fs.Write(exportBytes, 0, exportBytes.Length); } //using (Stream output = System.IO.File.Create(targetPath))//{// provider.Export(document, output, new TimeSpan(0, 0, 60));// FileInfo fileInfo = new FileInfo(targetPath);// Console.WriteLine($"Exportierte Datei Größe: {fileInfo.Length} Bytes");//} } //Telerik.Reporting.Processing.RenderingResult result = reportProcessor.RenderReport("PDF", new ReportSource(), deviceInfo);//Telerik.Reporting.Processing.RenderingResult result = RenderExport(param.ToString());//using (System.IO.FileStream fs = new System.IO.FileStream(targetPath, System.IO.FileMode.Create))//{// fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);// System.IO.FileInfo fi = new System.IO.FileInfo(pdfPath);// } public void ExportDocumentByiText7(PdfDocument document, string targetPath) { // Paths for input and output filesstring outputPdfPath = targetPath; string iccProfilePath = "sRGB.icc"; // Ensure you have an ICC profile file// Create a PdfWriter for the output fileusing (PdfWriter writer = new PdfWriter(outputPdfPath)) { // Load the ICC profile IccProfile iccProfile = IccProfile.GetInstance(System.IO.File.ReadAllBytes(iccProfilePath)); // Create a PdfADocument with PDF/A-3b conformance PdfADocument pdfaDocument = new PdfADocument(writer, PdfAConformance.PDF_A_3B, new PdfOutputIntent("Custom", "", null, "sRGB IEC61966-2.1", writer)); // Add metadata (required for PDF/A compliance) pdfaDocument.GetDocumentInfo().SetTitle("Sample PDF/A-3b Document"); pdfaDocument.GetDocumentInfo().SetAuthor("Your Name"); pdfaDocument.GetDocumentInfo().SetSubject("PDF/A-3b Export Example"); // Add XMP metadata XMPMeta xmpMeta = XMPMetaFactory.Create(); xmpMeta.SetProperty(XMPConst.NS_DC, "title", "Sample PDF/A-3b Document", new PropertyOptions(PropertyOptions.SEPARATE_NODE)); pdfaDocument.SetXmpMetadata(xmpMeta); // Add content to the document pdfaDocument.AddNewPage(); // Add an empty page as an example// Close the document to finalize it pdfaDocument.Close(); } // Output message System.Console.WriteLine("PDF/A-3b document created successfully!"); } } }


 

Yoan
Telerik team
 answered on 07 Feb 2025
1 answer
39 views

Hello,

I have an application where the user will drag object values from internal properties within the application into a Spreadsheet control. Think like a CAD package, the user would drag/drop something like circle's radius into a cell. These cells will automatically update as the application updates. I call these dynamic references DynamicDataFields.

The application maintains a collection of these DynamicDataFields. When the user drag/drops these fields from the application into a cell, that cell information is added to the collection.

It is a pretty simple solution and adding hooks for ActiveWorksheetEditor.Commands like Copy, Paste, Cut, Clear. RemoveCellsCommand, etc. - isn't too complicated. 

Basically, the application responds by either,

  1. Adding DynamicDataFields to the collection, or
  2. Removing DynamicDataFields to the collection. 

The biggest thing missing though, is how undo/redo get's handled. I am looking for ways to implement these two actions alongside the built-in undo redo system. Is this something that is possible? Where would I being looking? 

Or does anyone have any better ideas? 

Martin Ivanov
Telerik team
 answered on 05 Feb 2025
1 answer
63 views

None of the examples you guys have or I've been able to find are a solution to what should be an easy problem.  Right-click on a grid row, show the context menu, and when the user selects an items from the context menu, pass the id from the row to the page view model.

I did find this post but because it uses a UI element for the binding path and it uses code behind instead of MVVM, it's not a solution but my code is based on this.

MVVM RadGridView -> RadContextMenu -> RadMenuItem -> CommandParameter: get the row? in UI for WPF | Telerik Forums

Here is my context menu code.

<telerik:RadGridView.RowStyle>
    <Style TargetType="telerik:GridViewRow">
        <Setter Property="telerik:RadContextMenu.ContextMenu">
            <Setter.Value>
                <telerik:RadContextMenu>
                    <telerik:RadMenuItem Header="Open"
                                         Command="{Binding OpenCommand}"
                                         CommandParameter="{Binding Path=.}" />
                    <telerik:RadMenuItem Header="Delete"
                                         Command="{Binding DeleteCommand}"
                                         CommandParameter="{Binding Path=.}" />
                    <telerik:RadMenuItem Header="Print"
                                         Command="{Binding ReportCommand}"
                                         CommandParameter="{Binding Path=.}" />
                </telerik:RadContextMenu>
            </Setter.Value>
        </Setter>
    </Style>
</telerik:RadGridView.RowStyle>

The problem is it thinks the commands are in the view model for the grid row data so I'm getting binding failures. 

DeleteCommand property not found on object of type JobVm.

 

I need to have it use the commands in my page view model.  How can I achieve this?  I've tried dozens of combinations of setting the RelativeSource but none of them seem to work.

 

 

 

 

Stenly
Telerik team
 answered on 03 Feb 2025
1 answer
52 views

    I'm trying to allow for user customization of a grid with as little effort as possible.  In order of priority,

    1. I would like my user to be able to choose which columns are displayed in the grid, and in which order.  I'd really like a pre-built control for this, if one exists.  My vision is a list of all available columns on the left, and, on the right, a re-orderable list of columns being used.
    2. I'd like to do the same with groupings (already easy, but leading up to saving).
    3. The user should be able to set column widths and sort direction (already easy, but leading up to saving).
    4. I'd like to be able to save and restore that information as a user setting.

    Does Telerik have anything pre-built for any of that?  I've looked at the "Control Panel" sample and I don't think that would meet my definition of "little effort".

    Martin Ivanov
    Telerik team
     answered on 03 Feb 2025
    1 answer
    77 views

    I have a simple, classic grid of numerous records with a checkbox column.  I'd like to be able to multi-select records in the grid and then toggle the checkbox.  How would I go about doing that?

    A tiny, working example would be much appreciated!

    Martin Ivanov
    Telerik team
     answered on 03 Feb 2025
    2 answers
    50 views

    Hi,

    I have a ScheduleView where I want it to initially be readonly. But then open for edit by clicking a toggle button.

    Right now I have added the ReadOnlyBehaviour... and I can see how I can remove it.. but adding it back when clicking out of Edit mode is not so clear.

    I had an idea to add a bindable property to my readonlybehaviour like this:

        public class ScheduleViewReadOnlyBehaviour : ReadOnlyBehavior
        {
            private bool _isReadOnly;

            public static readonly DependencyProperty ReadOnlyProperty =
                DependencyProperty.Register(nameof(ReadOnly), typeof(bool), typeof(RadScheduleView),
                    new PropertyMetadata(true, ReadOnlyPropertyChanged));

            private static void ReadOnlyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
            {
                ((ScheduleViewReadOnlyBehaviour)((RadScheduleView)d).ReadOnlyBehavior).ReadOnlyPropertyChanged((bool)e.NewValue);
            }

            private void ReadOnlyPropertyChanged(bool isReadOnly)
            {
                _isReadOnly = isReadOnly;
            }

            public bool ReadOnly
            {
                get { return (bool)GetValue(ReadOnlyProperty); }
                set { SetValue(ReadOnlyProperty, value); }
            }

            public override bool CanSaveAppointment(IReadOnlySettings readOnlySettings, IOccurrence occurrence)
            {
                return false;
            }

            public override bool CanEditAppointment(IReadOnlySettings readOnlySettings, IOccurrence occurrence)
            {
                return false;
            }

            public override bool CanDragAppointment(IReadOnlySettings readOnlySettings, IOccurrence occurrence)
            {
                return false;
            }

            public override bool CanResizeAppointment(IReadOnlySettings readOnlySettings, IOccurrence occurrence)
            {
                return false;
            }

            public override bool CanDeleteAppointment(IReadOnlySettings readOnlySettings, IOccurrence occurrence)
            {
                return false;
            }

            public override bool CanEditSlot(IReadOnlySettings readOnlySettings, Slot slot)
            {
                return false;
            }
        }

    But keep ending up with the GetValue and SetValue methods not found.. obviously missing a point here. Would be a nice clean way of solving this problem.

     And yes, I am aware that I am currently not actually using the value being bound... I see that as the least of my issues.       
    hhgm
    Top achievements
    Rank 1
    Iron
    Iron
    Iron
     answered on 30 Jan 2025
    1 answer
    40 views

    Hi,

    How can I control the background colour of the extended bit of the header in a RadVirtualGrid? See the area circled in red on the screenshot.

    Thanks in advance,

    __Jason

    Martin Ivanov
    Telerik team
     answered on 30 Jan 2025
    1 answer
    46 views

    Hi,

    3 questions please about RadDocking element sizes and positioning.

    It's quite a simple layout: 1 dockable navigation (filters/selection) pane and 1 results/data pane in the document host.

    There can only be 1 tab in each pane but the layout will be used by many different screen types.

    ---------------------------------------------------------------------------------

    1) Is it possible to make the resize strip wider? - it's very narrow and often difficult to find. In the screenshot below I've set the RadPaneGroups' borders to be thick, leaving the obvious and narrow resize strip in between,

     

    ---------------------------------------------------------------------------------

    2) Is it possible to make the compass targets larger - they're very small.

     

    ---------------------------------------------------------------------------------

    3) It it possible to set the dock position programmatically? I've put a simple context menu in the TitleTemplate.

    The first call to this always works but subsequent calls don't do anything:


    private void OnPositionContextMenuClicked(object sender, RoutedEventArgs e)
    {
         DockState ds = (DockState)((MenuItem)sender).Tag;
    
         if(this.NavigationSplitContainer.InitialPosition != ds)
         {
            this.NavigationSplitContainer.InitialPosition = ds;
         }
    }


     

     

    Here's the XAML (a simplified version of the demo code - the panes are injected programatically):


    <UserControl x:Class="DM_Frontend_Views.TwoPaneDockingScreen"
                 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
                 xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
                 xmlns:local="clr-namespace:DM_Frontend_Views"
                 xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
                 xmlns:dock="clr-namespace:Telerik.Windows.Controls.Docking;assembly=Telerik.Windows.Controls.Docking"
                 
                 mc:Ignorable="d" 
                 d:DesignHeight="450" d:DesignWidth="800">
        <!-- xmlns:telerikQuickStart="clr-namespace:Telerik.Windows.Controls.QuickStart;assembly=QuickStart.Common" -->
    
        <UserControl.Resources>
            <ResourceDictionary>
    
                <SolidColorBrush x:Key="ContentForegroundBrush" Color="#FF020202" />
                <SolidColorBrush x:Key="LabelBrush" Color="#767676" />
    
                <DataTemplate x:Key="TitleTemplate">
                    <Grid>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="*"/>
                            <ColumnDefinition Width="20" />
                        </Grid.ColumnDefinitions>
                        <ContentPresenter Content="{Binding}" Margin="0,0,75,0" />
                        <telerik:RadButton Grid.Column="1" x:Name="PositionButton" Content="^" Click="PositionButton_Click">
                            <telerik:RadButton.ContextMenu>
                                <ContextMenu Name="cm" StaysOpen="false">
                                    <MenuItem Header="Left" Tag="{x:Static dock:DockState.DockedLeft}" Click="OnPositionContextMenuClicked"/>
                                    <MenuItem Header="Right" Tag="{x:Static dock:DockState.DockedRight}" Click="OnPositionContextMenuClicked"/>
                                    <MenuItem Header="Up" Tag="{x:Static dock:DockState.DockedTop}" Click="OnPositionContextMenuClicked"/>
                                    <MenuItem Header="Down" Tag="{x:Static dock:DockState.DockedBottom}" Click="OnPositionContextMenuClicked"/>
                                </ContextMenu>
                            </telerik:RadButton.ContextMenu>
                        </telerik:RadButton>
                    </Grid>
                </DataTemplate>
    
                <!-- <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="/Docking;component/FirstLook/Resources.xaml" />
                </ResourceDictionary.MergedDictionaries> -->
    
            </ResourceDictionary>
        </UserControl.Resources>
    
        <Grid Margin="8 0">
            <Grid.RowDefinitions>
                <RowDefinition Height="Auto" />
                <RowDefinition Height="*" />
            </Grid.RowDefinitions>
    
            <telerik:RadMenu Grid.Row="0">
                <telerik:RadMenuItem Header="FILE" />
                <telerik:RadMenuItem Header="EDIT" />
                <telerik:RadMenuItem Header="VIEW" />
            </telerik:RadMenu>
    
            <telerik:RadDocking x:Name="RadDocking"
                                RetainPaneSizeMode="DockingAndFloating"
                                CanAutoHideAreaExceedScreen="True"
                                Grid.Row="1" Margin="0 0 0 10"
                                BorderThickness="00"
                                Padding="0"                                                        
                                PreviewShowCompass="RadDocking_PreviewShowCompass">
    
                <!-- Navigation/selection pane -->
                <telerik:RadSplitContainer  MaxWidth="600" telerik:DockingPanel.InitialSize="296,150" MinWidth="300"
                Name="NavigationSplitContainer" InitialPosition="DockedLeft" BorderThickness="0,0,0,0">
                    <telerik:RadPaneGroup x:Name="NavigationPaneGroup" BorderThickness="0,0,20,0">
                        <telerik:RadPane x:Name="NavigationPane" CanUserClose="False" CanFloat="True" CanDockInDocumentHost="False" TitleTemplate="{StaticResource TitleTemplate}" Title="">
                            <telerik:RadPane.Header>
                                <TextBlock FontSize="40" Text="Filters"/>
                            </telerik:RadPane.Header>
                            <telerik:RadPane.Content>
                                <Grid x:Name="NavigationContentGrid">
                                    <Grid.RowDefinitions>
                                        <RowDefinition Height="*"/>
                                        <RowDefinition Height="17.5"/>
                                        <!-- Spacer -->
                                    </Grid.RowDefinitions>
                                </Grid>
                            </telerik:RadPane.Content>
                        </telerik:RadPane>
                    </telerik:RadPaneGroup>
                </telerik:RadSplitContainer>
    
                <!-- Data/results pane -->
                <telerik:RadDocking.DocumentHost>
                    <telerik:RadSplitContainer x:Name="MainSplitContainer" BorderThickness="0,0,0,0">
                        <telerik:RadPaneGroup x:Name="MainPaneGroup" BorderThickness="20,0,0,0">
                            <telerik:RadPane x:Name="MainPane" Header="Main Pane" CanFloat="False" Visibility="Collapsed" CanUserClose="False">
                                <telerik:RadPane.Content>
                                    <Grid x:Name="MainContentGrid">
                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="17.5"/>
                                            <!-- Spacer -->
                                        </Grid.RowDefinitions>
                                    </Grid>
                                </telerik:RadPane.Content>
                            </telerik:RadPane>
                        </telerik:RadPaneGroup>
                    </telerik:RadSplitContainer>
                </telerik:RadDocking.DocumentHost>
    
            </telerik:RadDocking>
        </Grid>
    </UserControl>

    Any advice (maybe regarding Templates/Adorners) would be very much appreciated!

     

    Martin Ivanov
    Telerik team
     answered on 22 Jan 2025
    0 answers
    47 views

     

    Hello,

    I have found a bug in the Track Changes Mode. It also occurs in the latest version (in the demo). To reproduce the bug:

    1. Enable Track Changes mode.
    2. Insert some text, e.g., "Lorem Ipsum is simply dummy text of the printing and typesetting industry."
    3. Wait for a short period (to allow the insertion to occur at different times), approximately 10-15 seconds.
    4. After inserting a word entire the existing text (like on the screenshot), type a character or word, then immediately try to delete the last character using the backspace key. At this point, the error occurs: backspace does not remove the last character, only on the second attempt.

     

     

     

    The error occurs in Telerik WPF 2022.1.222, but in the new version, it still appears, though without throwing exceptions (I checked in the lastest demo, and the last character doesn't delete on the first attempt).

    Can you reproduce this issue, or is it a known problem?

    Is there a solution available?

     

    Emin Sadigov
    Top achievements
    Rank 2
    Iron
    Iron
    Iron
     updated question on 21 Jan 2025
    Narrow your results
    Selected tags
    Tags
    +113 more
    Top users last month
    Rob
    Top achievements
    Rank 3
    Iron
    Iron
    Iron
    Atul
    Top achievements
    Rank 1
    Iron
    Iron
    Alexander
    Top achievements
    Rank 1
    Veteran
    Iron
    Serkan
    Top achievements
    Rank 1
    Iron
    Shawn
    Top achievements
    Rank 1
    Iron
    Iron
    Want to show your ninja superpower to fellow developers?
    Top users last month
    Rob
    Top achievements
    Rank 3
    Iron
    Iron
    Iron
    Atul
    Top achievements
    Rank 1
    Iron
    Iron
    Alexander
    Top achievements
    Rank 1
    Veteran
    Iron
    Serkan
    Top achievements
    Rank 1
    Iron
    Shawn
    Top achievements
    Rank 1
    Iron
    Iron
    Want to show your ninja superpower to fellow developers?
    Want to show your ninja superpower to fellow developers?